Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
29answers
4k views

What are good programming competitions?

I'm interested in both single coder and team competitions.
29
votes
9answers
2k views

Why programming competition contestants use C++ and Java?

After competing in and following this year's Google Code Jam competition, I couldn't help but notice the incredible number of [successful] contestants that used C/C++ and Java. The distribution of ...
17
votes
12answers
2k views

Have you found competitive programming to be useful?

I am looking to hone my programming skills outside of school/work and was wondering if any of you have participated in competitive arenas like CoreWar or TopCoder strictly for the purpose of ...
9
votes
2answers
258 views

overview and news of/about coding competitions

I just have seen this nice screencast of someone coding for the Ludumdare 48h competition. I seem to miss such contests most of the time and only hear about them when they ended. I would love to ...
8
votes
11answers
1k views

C++ Programming Contests

I would like to test my C++ programming skill level by competing with others. What programming contests are there for C++?
8
votes
6answers
397 views

What is a good community run venue for finding programming competitions?

The closure of a recent entertaining 'question' got me wondering what would have been a better forum for the challenge presented. I know there is a similar question, but most of the responses are ...
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 ...
7
votes
3answers
257 views

How would you go about tackling this problem? [SOLVED in C++]

Intro: EDIT: See solution at the bottom of this question (c++) I have a programming contest coming up in a bit, and I've been prepping :) I'm practicing using these questions: ...
6
votes
8answers
1k views

What are some fun programming competition questions?

When I was in university, I helped organize a programming competition for Computer Science students. I believe we had 4 questions in total and allowed an hour for each one. The best received ...
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 ...
4
votes
7answers
293 views

Help with geometry problem - don't have any idea

I am preparing myself for programming competitions and i would like to know how can i solve this problem. I guess it's geometry problem, and it seems i can't get any ideas about solving it. Here it ...
4
votes
2answers
313 views

“Solving Business Problems” Dev Competitions - Do They Exist?

G'day All. First time question-asker. A recent question (http://stackoverflow.com/questions/505404/what-are-good-programming-competitions) asked about good programming competitions. This got me ...
3
votes
4answers
174 views

Java shortcut: generating an array to change a for loop into a for-each loop

I have considered using this shortcut in my competition programming. I define a function: private static int[] range(int n) { int[] ret = new int[n]; for (int i = 0; i < n; i++) { ...
2
votes
3answers
149 views

Sql Competitions

Sorry to ask this kind of questions. But I am eager to know some good sites where I can have the opportunity to have some sql competitions. I found 1 TroyK's T-SQL Challenge but it is not free. ...
1
vote
0answers
59 views

Competitions in which I can present my application? [closed]

I wanted to ask recently I have completed my desktop application on which I have been working from last 6 months but now I am not sure how to take this further. First I tried to find out some ...
1
vote
4answers
193 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
3answers
59 views

Find first user to reach goal

An interesting one, I think :) - Users in my app get points for actions they perform. I wish to find the first user to reach a goal of 100 points. One method to do that is to return all performed ...
1
vote
1answer
53 views

What is the good ruby world-wide programming competition other than Rails rumble?

Please name one or more ruby world-wide programming competitions other than rails rumble
1
vote
5answers
167 views

What reference materials would you bring to a programming competition?

For the ACM-ICPC programming competition, teams are allowed to bring any printed materials. Books, pages of equations, even code. Language documentation (e.g. the Java API) can be accessed online. So ...
1
vote
5answers
909 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
712 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 ...
1
vote
4answers
733 views

Game AI programming competition framework

Does anyone know of an open source AI programming competition framework( shell)? The target should be 'game aware'. I'd like it to: Be written in Java Have a reliable way to measure/terminate time ...
1
vote
3answers
290 views

Software Engineering/Application Development Contests

There are a few threads on SO that discuss coding contents & competitions. Unfortunately, many of them are either contrived problems, or based entirely on theory, math, and/or algorithms. Where ...
0
votes
1answer
106 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; ...
0
votes
0answers
49 views

JQuery Safe Crack effect - Achievable within form?

Basically I need to achieve the effect of cracking a safe with numbers on a jquery script. The client are doing a competition, I need to create a form that the user fills out to be entered into a ...
0
votes
1answer
39 views

Check duplicate address on contest entry

I am building a UK wide competition website that limits entries in a given household/address to 1 per week, and 4 overall. I need to know the best practice as to what fields to check when seeing if ...
0
votes
2answers
87 views

Competitions on the Traveling Salesman Problem and Testsets

I want to try some methods on the TSP and need some testsets. I know there are certain competitions on exact and approximate solutions for the TSP, and I would like to test some ideas I have on some ...
0
votes
4answers
109 views

Does this snippet of code(a macro for container traverse) works? if yes, why?

Following Dmitry Korolev tutorial on TopCoder i encountered this generic-container-traverse macro: #define tr(c,i) for(typeof((c).begin() i = (c).begin(); i != (c).end(); i++) It confuses me ...
0
votes
0answers
72 views

Looking for help in Coding Competition with Android

I want to enter a coding competition which includes a mobile application section. The contest information is here: http://www.infobright.org/contest/2011q1/application_dev_challenge. While I have ...
0
votes
1answer
81 views

How applicable are non-compete terms with iPhone apps? [closed]

I was a freelance for iPhone apps. One of my clients made me sign a non-compete agreement. In the agreement it did not mention what activity specifically, it goes like this: shall not engage in ...
0
votes
1answer
105 views

Rails Rumble - Can I See the Code?

I've came across a code of couple projects from the Rails Rumble 2010 hosted on Github. But this is just a tiny percent of total amount of projects. Is it possible to have a read-only copy of git ...
0
votes
1answer
400 views

Size-coding competitions

What are your preferred size-coding (competitions for the smallest program that does something, or for the smallest source code) oriented sites? There was a really nice python site, I can't remember ...
-1
votes
1answer
123 views

Where can I find a forum/discussion board for competitive programming? (ACM, TopCoder etc) [closed]

I'm trying to prepare for the ACM competition in November, and I'm going through the practice problems and getting stuck on data structure or implementation problems. I tried to find a discussion ...
-2
votes
1answer
36 views

Suggest a concise book on ASP.NET? [closed]

I am taking part in Imagine cup and my idea includes design of a website with a login, search system, pretty much like ebay. Since time is scarce, I need a concise book. I found a book recommended ...