Slashdot Mirror


ACM Collegiate Programming Contest Winner Announced

Slob Nerd writes "The finals for this years ACM International Collegiate Programming Contest World Finals have just finished. And the winner is... St. Petersburg Institute of Fine Mechanics and Optics! Full results here, and details on all teams here. A pdf of the problems is also available. Congrats to all involved."

17 of 176 comments (clear)

  1. And outsourcing isn't big in St. Petersburg... by hughk · · Score: 4, Interesting
    There are a number of Russian companies doing outsourcing but there is nowhere near the same numbers as in Moscow. Moscow has more MBAs than programmers, but the money is much better. Most people from St. Petersburg wouldn't choose to move to Moscow unless they received a really good offer (ask V.V. Putin).

    St. Petersburg colleges always do well in these competitions, and all that happens is the people end up emigrating.

    --
    See my journal, I write things there
  2. Bleh by Rosco+P.+Coltrane · · Score: 5, Funny

    This championship looks very amateurish and unprofessional compared to this!

    --
    "A door is what a dog is perpetually on the wrong side of" - Ogden Nash
  3. Depressing by gowen · · Score: 5, Insightful

    What is the appeal of turning everything into a competitive event? Whether its music, literature or programming, someone somewhere is trying to convert a self-contained creative process into a "Nyah, nyah, my college/school/town I'm better than deal."

    What happened to the satisfaction of doing something for its own sake?

    --
    Athletic Scholarships to universities make as much sense as academic scholarships to sports teams.
    1. Re:Depressing by Anonymous Coward · · Score: 5, Insightful

      It's not like you HAVE to program in this compitition.

      If you want to program, you program for it's own sake.

      Some people actually LIKE competition. They like piting their skills against a advisary. IT'S FUN.

      People sponsor events like this because it gets people public attention. It allows you to identify good programming practices vs bad ones, good programmer's vs bad programmers, good programs vs bad programs.

      People can take this experiance and IMPROVE themselves, they can see were they F*ck'd up and fix it, they can see were they did well and improve on it.

      It allows the winners notoriaty. As a winner you get benifits like having your name advertised, getting a trophy, and you get to point out that for this event you were the best or part of the best programming team around.

      Why would you NOT want to compete? What is wrong with competition?

      IT'S FUN.
      It inspires creativity, hard work, and advancements in technology.
      It gives the winners rewards and it's a learning experiance for the losers so they can improve themselves.

      Why do you find that so depressing?

      It's a win-win situation for anybody and everybody involved that has a good attitude.

    2. Re:Depressing by |<amikaze · · Score: 4, Interesting

      I agree! Last year two friends and I competed in the local, and regional competitions, but didn't go any further than that. It was a blast.

      Plus, having two second-year compsci guys and a first-year engineer come in and beat everyone (including the profs, althought they were writting in Eiffel I think), was pretty funny. Mind you, we only won by a few points.

      When we got to regionals though, it was clear that we didn't have the experience needed to go further. We had 8 hours I believe, and sadly, a few of those were fighting with stupid language problems, instead of actually solving problems. As an example, for one of the problems, we ended up overflowing a double in C, because the data was too big. The solution? Rebuild the same problem in Java, using a BigInt...

      All in all, it was a great time, and since we finished first locally, the CMPT department paid for us to go to regionals.

  4. Congrats to the winners, and bitter memories by DunbarTheInept · · Score: 4, Interesting

    Good job to all who participated. This thing is *hard* because, while the problems are not insurmountable, you are only give 5 hours to do as many of them as you can. It's a contest in how good you are at predicting where the difficulty in the problem lays, and nailing that problem right away. Some of the problems look deceptively simple. It's the ones that immediately notice what it is about them that's not simple that do well.

    Way back when, I got to participate in one of these as an undergrad (it was 1994, if my memory is right). I've still got a little bit of a bitter memory over that one because a mistake in the givens of a problem caused our team to lose one of the problems - one which we would have gotten a HUGE score on otherwise. (Because it was done 'right'* in just 30 minutes, and your score is based on how much clock time was left after your solution is accepted.) (And that year the problems were really hard such that the winning team only got 3 of 7 done - they had accidentally given the undergrads the contest that was supposed to be for the grads - so missing one problem is a huge difference.)

    * - But what was wrong with it was based entirely on a misprint in the problems presented to us. The problem involved calculating big factorial numbers (among a few other things). The trick was to realize that no computer had a native number format that could store 300 factorial, and so you had to invent your own string-of-digits number primative that could handle N digits and multiply two numbers - given that N could be in the thousands - it's a simple problem, but the trick is to realize it is necessary to make up your own primitive. I realized it right away and wrote up the number primitive in a few minutes. But there was a problem - the givens in the problem description guaranteed that the test input will contain no factorials that result in more than FOO digits, where FOO was something in th 5,000's. This was the misprint - the biggest test they used actually contained something like FOO+200 digits, where FOO was in the 5,000's. There was no good way to check this given, since to do so required that we have a large-number multiplying routine - which is what this program was all about in the first place - which is why they gave it to you as a given.
    So when I allocated an array of size FOO+1 (for some overhead), my program kept crashing. Those people who got sloppy and didn't try to be efficient and just made a huge array of size 10,000 had their programs work just fine on the first attempt. Those people that tried believing the given in the problem had programs crashing. And the nature of the test environment was that we couldn't see our programs' responses to the test data, and the test results weren't allowed to tell us what really happened when the program was run - just that "program terminated prematurely.", and that's it - no information about the data that caused this, and no indication of where the program died. In our own tests everything worked fine because we weren't trying numbers larger than the givens PROMISED us the test data needed, but when the solution was submitted, the test data tried larger numbers than the given promised would be used, and thus the program crashed.

    I only know what happened because an announcement was made 4 hours and 30 minutes into the contest that there was a misprint and then the correction was given. Then I changed the size of the array, resubmitted, and it was right, after too many penalty points for failed submissions, and 4 hours of points wasted on THEIR mistake. Yeah, I'm still a bit bitter, because their attitude was that the contest was allegedly still "fair" because everyone had the same misprint on their handouts, and scores would not be adjusted for this mistake. I called "bullshit" because some people hadn't even tried that problem and therefore were unaffected by its misprint, and people who had been sloppy and picked a huge array were also unaffected by the misprint.

    Our team had a chance of pl

    --

    Don't label something "offtopic" unless you know the topic well enough to tell what's on topic.

    1. Re:Congrats to the winners, and bitter memories by smiths2 · · Score: 5, Insightful

      You say the people who "got sloppy" got the problem correct right away. I think a better description would be they put in some tolerance for errors. I would assume you bothered to check your program against the maximum input (to check for time factors).

      You also forgot to mention that the three or four team members get to SHARE one computer. So, it's not only important to be able to solve problems quickly, it's also about managing the limited resources at your disposal.

    2. Re:Congrats to the winners, and bitter memories by pkhuong · · Score: 4, Interesting

      Being a Smug Lisp Weenie, i'd like to point out that only lower level languages don't have support for arbitrary-size integers :p

      [54]> (! 300)
      [anti lameness filter]
      306057512216440636035370461297 268629388588804173576999416776 74125947653317671686
      7465515291422477573349939147 888 7017263688642639077590031542268 429279069745598412
      254769302719546040080122157762 5 2176854255965356903506788725264 321896264299365204
      576448830388909753943489625436 0 5322598077652127082243763944912 012867867536830571
      229368194364995646049816645022 7 7165001851765464693401122260347 297240663332585835
      068701501697941688503537521375 5 4910289126407157154830282284937 952636580145235233
      156936482233436799254594095276 8 2060806223281238738388081704960 000000000000000000
      000000000000000000000000000000 0 000000000000000000000000

      That's on Clisp 2.31, btw.

      --
      Try Corewar @ www.koth.org - rec.games.corewar
    3. Re:Congrats to the winners, and bitter memories by ghamerly · · Score: 5, Interesting

      I was a contestant at the ACM world finals in 1999 and 2000, and have been a coach since.

      In 1999, we had a similar problem to what you just described -- the test data did not match the problem description. Many teams that followed the description exactly were not getting their programs accepted, while many other that simply accomodated for the flaw (without knowing that they were doing it) got their programs accepted.

      But you have a recourse in this contest, which I remember the Waterloo team (sitting across from us) used: you can intentionally crash your program (using assert()) if an assumption you make about the program fails. If it crashes, you know that your assumptions are not holding. This is what Waterloo did, and they found out that the their program was failing because of a mis-specification.

      As others have said, the ACM contest is about time-management, teamwork, good decision making, and clever and fault-tolerant programming. I understand your frustration (I'm right there with you), but I think the lesson to be learned is how to work together solve the problem, not how to hold a grudge.

  5. It runs Linux! by spellraiser · · Score: 5, Informative

    Many slashdotters will probably be pleased to know that the contest's environment OS was Red Hat Linux 9.0.

    Full environment specs here.

    --
    I hear there's rumors on the Slashdots
  6. Congratulations to the Russians by azaris · · Score: 5, Interesting

    It comes as no surprise that Russian teams did especially well considering most of the problems relied heavily on mathematical understanding. It's perhaps the one country in the world where logic and math have been given their rightful place and respect in education.

    1. Re:Congratulations to the Russians by kryptkpr · · Score: 4, Interesting

      I'm currently taking an undergrand in Computer Eengineering here in Canada, and just the other day I was discussing with my father (who had done an Engineering degree in communist Russia) the differences between the two systems.

      He said that in Canada, much more focus is placed upon raw math then in Russia, where a lot of his time (11 or 12 courses!) was wasted on things like History of the Party, Marxist Theory, etc..

      The main difference in my experience (which is rather short; I left the country at 8, so I was just finishing grade 2) was that the _intensity_ of the education was much higher in Russia, not in the higher learning institutions, but in the normal (for kids aged ~7 - 14) school system. We had homework, every single day, and it was routinely checked. Not only that, but if your nails were not cut, if your hair was not combed, you'd be sent him in shame.

      What I learned in the first 2 years of education in Russia lasted me through until about Grade 6 in Canada's public eduication system. I think the result of this is that by the time you hit Post-Secondary your mind is already working at full capacity. In Canada at least, I went through the entire public system completely braindead, and only now that I'm in second year at University do I really feel like I'm being challenged (maybe a little too much.. should have been better spread out over the years I wasted in high school!)

      --
      DJ kRYPT's Free MP3s!
  7. Too bad, but why are you dissing everyone else? by putaro · · Score: 4, Interesting

    Why do you assume that everyone else was "sloppy" and just allocated a big array? If you're going to write a big-int routine it's not that much more difficult to write an arbitrary precision routine than it is to write a "max FOO" precision routine.

    I do think that they should have re-adjusted for the misprint, but it's pretty small of you to simply denigrate everyone else's performance. Perhaps they had been exposed to some other ways of working with large numbers than allocating arrays to the max precision. When I was in high school we had a pi calculator we used to run using DEC BASIC's arbitrary precision string arithmetic (this was before high-res graphics or we would probably have been wasting our time on fractals). I'm sure if I'd been given the problem I probably would have done something involving strings which probably would have worked.

  8. Interesting problems by Blue23 · · Score: 4, Interesting

    One of the things I always liked about the ACM problems, both now and when I was competing, was that they were fun challenges. Very few "real world examples", instead they always made your head spin a few times and then you could dive right in.

    You had a limited amount of time, and when I was going it only a single terminal so only one team member could actually code at once. So optimizing for time to code was a huge factor. But it also meant that you could afford to specialize a bit, have some out-of-the box thinkers who may be great algorethmically but not the best with real code, and a dedicated coder to implement.

    I remember one year we had a Mechanical Engineer on the team who had a completely different approach. We were trying to work out how to do one problem correctly mathmatically and he mentioned that they only wanted two significant digits and suggested an iterative solution to the math problem that worked beautifully.

    Hats off to all the competitors.

    Cheers,
    =Blue(23)

    --
    LITTLE GIRL: But which cookie will you eat FIRST? C. MONSTER: Me think you have misconception of cookie-eating process.
  9. Re:MIT has the highest score by aflorenc · · Score: 5, Informative

    (I'm one of the Directors of the contest, so I know of what I speak.) "Score" is a terrible title. It should be "penalty". The teams are ranked first by the number of problems they got correct. Thus St. P's came in first, because they were the only team to get 7 problems correct. Among the four teams that got 6 problems correct, they are ranked from smallest penalty (KTH) to highest (MIT). Penalty is computed as the total cumulative time it takes you to solve a problem. So if you solve one problem after 30 minutes and a second problem after 30 additional minutes, your penalty is 90 minutes (30 from the first problem, 60 from the second). In addition, you are given 20 minutes of extra penalty for each incorrect submission to a problem that you eventually get correct.

  10. Why this is hard by Khelder · · Score: 4, Interesting

    Some posts already mention some reasons why this is a hard contest, but I thought I'd summarize and add a couple more:

    * You have more problems than your team can possibly do in the time allotted. When I did it, the winners got 4 or 5 out of 8. There's a lot of pressure to work fast.

    * All the problems are tricky, but there is definite variance in their difficulty. Since your score is based not only on how many you get right, but how fast you get them right, you have to figure out which problems are the easiest and do them first. Starting with a problem that looks easy but turns out not to be can really hose you.

    * The answer evaluation is harsh. You submit a solution program and if it's not correct you get back a response like: "insufficient output", "too much output", or simply "incorrect output." Figuring out why the judges say your program doesn't work when you think it does can be really frustrating.

    * There are multiple people on the team (4 my first time, 3 my second and I think since (but someone correct me if that's no the case)) and only one computer, so managing that resource is crucial.

    I don't know how much the contest proves, or how much stock employers, say, should put in it, but it was fun to do.

  11. St.Petersburg guys, apply to MIT and Stanford by svetkins · · Score: 5, Interesting

    I participated in this contest twice, in '96 and '97.
    The first time, I was studying at a Bulgarian university (Sofia), and we scored 4th at the finals; MIT scored 5th. Two of us transfered to MIT that same year. Even though we had the skills to do well in such a contest (quick, efficient coding; algorithms knowledge; a little bit of teamwork), there's far more to computer science and engineering than that, and the rest is not taught in any Eastern European university.

    And this is basically why programming contests are so hot in that part of the world. And why American students generally don't do well. It's all about the incentive! Kids in the US don't need to do it, and have little to gain. Whereas in Eastern Europe, it's the way to get some kind of recognition, and get on the fast track to a good education, a good job, etc. (Usually, involving immigrating, of course.)

    Also, you should understand that these kids have been training for 5 years for such programming contests. Programming as a sport starts around 7 or 8th grade (IOI is the equivalent international contest for highschoolers), so by the time these kids get to college, they are highly experienced.

    So, yeah, I expect the winners to apply to the best American universities and get in, of course.
    MIT and Stanford can only gain by losing in that competition.