Tagged Questions
8
votes
7answers
2k views
books/sites to get good at algorithm competitions
I've been practicing doing topcoder and acm contests(local ones and practice sets). But I'm hitting a brick wall in terms of performance. I can solve the first topcoder problem, but almost never the ...
6
votes
6answers
1k views
I need some tips on how to prepare for the ICPC Programming Competition!
I'm participating in the Competencia Latinoamericana de Programacion this month and I was wondering if any of you have ever programmed competitively. The contest is basically 10 questions and I have ...
1
vote
4answers
200 views
Dominoes - Competition question
http://ecoo.org/ecoocs/contests/ecoo_2007.pdf
Hey guys,
I'm studying really hard for the upcoming ecoo regionals for my area and I'm stumped on this one question. I really have no idea where to start. ...
1
vote
5answers
920 views
What is the best single-source shortest path algorithm for programming contests?
I was working on this graph problem from the UVa problem set. It's a single-source-shortest-paths problem with no negative edge weights. From what I've gathered, the algorithm with the best big-O ...
1
vote
10answers
725 views
Running a fastest-algorithm competition
I'd like to run competitions like code golf competitions, but the winner would have the fastest algorithm, not the smallest code.
One fair way to measure speed of an algorithm is to use a neutral ...
0
votes
1answer
108 views
ACM dropping balls
Below is the code that I have copied from link http://progspedia.blogspot.com/2011/05/679-dropping-balls.html#comment-form
#include<stdio.h>
int main()
{
int t,D,I,P,i,j;
...