ICPC 2025 World Finals Results

(worldfinals.icpc.global)

103 points | by pykello 3 days ago ago

56 comments

  • 512 2 days ago

    The "Diamond Sponsors" of the event are Huawei and OpenAI. I found the welcome note from OpenAI [1] quite curious:

    "[...] Eventually, AI will be able to solve even the hardest contest problems that we’ve seen yet. It will work alongside us and help drive the discovery of new knowledge. What you take from this week - the sense of being stuck, the thrill of progress, and the practice of building together - will remain critical as you shape your community and the future you build. [...]"

    By Chief Scientist of OpenAI, Jakub Pachocki. Who happens to be an incredibly accomplished Competitive Programmer (2nd in ICPC World Finals, Winner of Code Jam, 2nd in Hacker Cup).

    [1] https://icpc.global/community/history/brochures/world-finals...

    • goalieca 2 days ago

      That curious statement comes across as inappropriate. These talented students are among the best in the world. Yet, openai chose to make it about and praise themselves. That was not classy.

      • foxglacier 2 days ago

        Surely it's meant to reassure the contestants that they're not wasting their time. They'll obviously know AI can do some of this stuff so it's a reminder that the true purpose of the competition isn't to be good at programming.

        People still compete in playing musical instruments, riding horses, painting pictures, etc. All redundant because of technology but still they do it for other reasons, not the practical utility of the product of their work.

        • lordhumphrey 2 days ago

          Peak HN here. Playing musical instruments is "redundant because of technology". And so is "riding horses"? And "painting pictures". Eh, what?

          • lioeters 2 days ago

            I think they mean audio recording/reproduction, automobiles, and cameras have replaced much of what musicians, horses, and painters used to do. Similarly, AI will replace much of the thinking and problem solving done by programmers.

          • foxglacier 20 hours ago

            For example, almost all music listened to today is recorded, not live. It was the opposite way around 100+ years ago. Almost all portraits are photographs, not paintings, etc. The common practical uses of those skills are gone and they're relegated to small niches, luxury services, and personal pleasure.

    • eunos 2 days ago

      Lol and the Huawei note wrote otherwise. AI still hallucinates a lot so pursue mastery over algorithms and data structures to improve the technology

      • Mr-Frog 2 days ago

        Chinese century incoming.

    • brcmthrowaway 2 days ago

      How many chief scientists (aka career climbers) does OpenAI have at this point?

      • rfoo 2 days ago

        meret is really good tho.

  • toonewbie 3 days ago

    I was onsite today watching the contest live, and great atmosphere all around. One surprising outcome: the team in 17th place solved the same number of problems as the team that won gold in 4th place. Hopefully that isn't too demotivating to any team and we can see better separation in the future. After all, it can only mean that the problemsetters underestimated the contestants ;)

    Congratulations to all the teams!

    • tshaddox 3 days ago

      > the problemsetters underestimated the contestants

      Except for problem C, which was only submitted by 4 teams, all unsuccessfully.

      • cperciva 3 days ago

        I don't blame them. That problem statement seems to be deliberately confusing.

        • tshaddox 2 days ago

          Yes, I meant to imply that the problemsetters are to blame.

        • hatthew 2 days ago

          I doesn't seem that unclear to me? I absolutely don't have the skill to solve it, but it took <2 minutes to understand the problem and goal.

          • orlp 2 days ago

            It doesn't seem that hard to solve to me either. It's solvable with basic linear programming.

                1. Add a variable for each node, and a variable for each output edge from stations.
                2. For each reservoir add equality constraints to the sum of incoming edges with the coefficients given in the problem.
                3. For each station add equality constraints between the weighted sum of its inputs (which is 1 for the root station) and its outputs (which are the variables we added).
                4. Add an out_edge >= 0 constraint for each output edge on stations to forbid illegal negative flows.
                5. Add a variable m which is constrained to be less than all the output station variables.
                6. Maximize m.
            • amluto 2 days ago

              This happens every now and then. Basic LP isn’t conceptually so bad, but the ICPC environment doesn’t come with CPLEX or Gurobi, let alone a less fancy open source tool. And there is definitely not a copy of cvxopt around to make this easy. Even if you want to quickly kludge up an interior point solver, you don’t have a linear algebra package available (sorry, no numpy or BLAS).

              What you can do is to submit a 25 page PDF that the organizers will print and stick on your desk for the competition. And you could put a careful implementation of a very basic simplex solver using dense matrices that is optimized for ease of transcription, taking up, say, half a page. You would hope not to use it because it’s absurd, but then if this problem C shows up, the fastest typist on the team can type it in verbatim.

              If I, personally, did this and won the contest as a result, I would feel slightly bad. In my opinion, the contest organizers should either provide an LP solver or refrain from giving obvious LP problems like this.

              Obviously OpenAI could kick everyone’s butt by typing faster than any human and by effectively having a large memorized library of pre-written code. Honestly, LLMs vs humans in the ICPC feels a bit like IBM’s old Jeopardy stunt where the machine had a huge advantage in its ability to push the button.

              • orlp 2 days ago

                The team manual I referred to when I was in university does in fact contain such a basic simplex LP solver: https://github.com/ludopulles/tcr/blob/master/tcr.pdf (page 22).

                I'd just like to clarify that I'm not saying this is necessarily the solution the problem writers were looking for, or that it will run within the allocated time. Just that it's a feasible solution.

                • yallpendantools 2 days ago

                  Amazing! Thanks for sharing.

                  The farthest I got in the ICPC was regionals. I was tasked to make the team binder. I was a budding LaTeX enthusiast then but our coach wanted me to do it in...MS Word. Not that he didn't know LaTeX either (he's a published math/CS researcher after all), it's just the cultural ubiquity and comfort of MS Word. :(

                  The result was something more like https://github.com/ludopulles/tcr/blob/master/TCR-Sudo.pdf . I love how information-dense tcr.pdf looks in comparison. They even have a table of contents!

                • gregdeon 2 days ago

                  Wow, incredibly interesting to see what one of these manuals looks like! Thanks for sharing.

                • amluto 2 days ago

                  Mine did too :). But I never used it except for practice.

              • dchftcs 2 days ago

                I suspect the lack of success of the teams resulted from overfitting for the more standard pattern that is solving a max flow, and I also suspect the organizers are deliberately using this to trick the contestants. Spending time to practice coding vanilla algorithms to solve either max flow or a linear program is a waste of time for >99% of computer scientists.

            • amluto a day ago

              Replying again, having actually read the problem more carefully: the problem isn’t that simple. There will be a few tens of thousands of variables. The LP is extremely sparse, and I’m sure a good solver could solve it within the time limit, but a little team-notebook-sized dense solver would take at least a few trillion operations to finish and would not be nearly fast enough.

              • orlp 19 hours ago

                As I mentioned in my other comment:

                > I'd just like to clarify that I'm not saying this is necessarily the solution the problem writers were looking for, or that it will run within the allocated time. Just that it's a feasible solution.

                I don't doubt there's a clever dedicated flow algorithm the problem writers intended instead of the blunt tool which is LP.

  • pykello 3 days ago
  • imadethis 3 days ago

    The headers A-L are links to the problem PDFs if you want to see.

  • partomniscient 2 days ago

    The ICFP progamming contest for this years International Conference on Functional Programming started today if anyone's interested.

    https://icfpcontest2025.github.io/index.html

  • akamaka 2 days ago

    In the TV show Silicon Valley, there’s a joke that Nelson “Big Head” Bighetti, the perennial underperformer, did his undergrad at ASU. But I guess that’s one thing the show got wrong, because Arizona State University finished among the top three American schools in the world finals.

  • coolThingsFirst 2 days ago

    Great memories of ICPC. Their problem statements are so creative it’s insane.

    Nothing like CF garbage, solving imaginary patterns that no one cares about.

    • osti 2 days ago

      What do you mean by imaginary patterns from Codeforces?

  • jmpman 2 days ago

    Wow ASU, the 4th highest US School. Not bad when also being a top party school.

  • lordhumphrey 2 days ago

    Wow, China with a pretty dominant position there with 3 teams in the top five. Interesting seeing Karlsruhe there too, I'd been looking at that school.

    • concacinquant a day ago

      They have won the championship multiple times actually. There are times where "Western teams" are just full of mainland Chinese communicating in Mandarin (e.g. a few MIT teams in the past including the 2021 champions...)

      • lordhumphrey a day ago

        Wowser. Is it a similar story to the Chinese olympics successes - train kids from a (very) young age in specialised schools?

  • cptroot 2 days ago

    Does anyone know how long it will be until the input/output data packet is made available? I'm interested in taking a crack at some of these but know I always miss an edge case.

    • rfoo 2 days ago

      You can try your solutions here: https://wf25open.kattis.com/contests/wf25open

      I believe it runs with the same test data as in the actual contest.

      • dooglius 2 days ago

        > You need to join the contest in order to be allowed to submit.

        Doesn't seem to be publicly accessible to non-participants (yet?)

  • sanatik 2 days ago

    My alma-mater is only 61st. I remember the times we’re top 30. Great atmosphere though! I wonder if these competitions will become obsolete as LLMs advance.

    • MisterSandman 2 days ago

      I don’t see why it would. Chess is still bigger than ever.

    • 2 days ago
      [deleted]
  • 3 days ago
    [deleted]
  • riku_iki 2 days ago

    I expected fast response from AI labs about what kind of medals top models could win.

  • agnishom 2 days ago

    What is Moscow's secret to training their programmers so well?

    • pedrosorio 2 days ago

      *St. Petersburg

      I guess, like a lot of other sports at the college level, having a reputation that attracts the best competitive programmers (and a great coach to go along with it) doesn't hurt: https://en.wikipedia.org/wiki/Andrey_Stankevich

    • userbinator 2 days ago

      The "Russian hacker" stereotype is not at all fiction. If you've ever worked with developers from any of the former USSR, you'll know what I mean; they are not afraid to be creative and do whatever it takes to solve the problem.

    • dikei 2 days ago

      Start training them from a very young age: competitive coders typical start in secondary/high school or even earlier.

      Russia has specialized schools to support this kind of education, so are China and many other countries. Thus, they rank very high in IOI and ICPC contests

  • muldvarp 2 days ago

    I expect OpenAI to have crushed the competition here.

  • wiz21c 2 days ago

    what's the meaning of of the A,B,C... columns It's a ratio but of what over what ?

    • concacinquant a day ago

      A, B, C... are the ID of the problems (not sorted by difficulty, teams have to figure out the order).

      For each cell of (team, problem), the "ratio" x/y isn't actually a ratio. x means how many submissions were made. y is the minute when the accepted solution was submitted. For example, "3/298" means they made 3 submissions in total, and the accepted solution was submitted in the 298th minute (the contest lasted 300 minutes).

      The penalty ("Time" column) is calculated as (sum of y) + 20 * (sum of (x-1)).

    • acomjean 2 days ago

      The columns are the questions. The score is “total att/solved”, (attempted/ solved?) though that doesn’t help much. I’m guessing you need to get the answer within the time limit.

      https://worldfinals.icpc.global/scoreboard/2025/problems/A.p...

    • saagarjha 2 days ago

      They're the problems with how many teams correctly solved it over the number of teams that attempted to solve it.

  • 3 days ago
    [deleted]