The programming-competitions tag has no wiki summary.
19
votes
3answers
329 views
Construct the largest possible rectangle out of line segments of given lengths
I recently participated in a competition where I was asked this question. Given an array with lengths what is the area of the biggest rectangle that can be made using ALL the lengths. The lengths can ...
12
votes
6answers
885 views
Find three numbers appeared only once
In a sequence of length n, where n=2k+3, that is there are k unique numbers appeared twice
and three numbers appeared only once.
The question is: how to find the three unique numbers that appeared ...
7
votes
2answers
200 views
programming *challenge* site *for children*?
I know there's some competition out there for whiz high school kids, but I'm looking for something more geared towards an advanced middle schoolers. The problems should be simpler than Project Euler ...
7
votes
10answers
301 views
Where shall I find Questions to be put up in a Coding contest?
Err....I guess this aint correct place to ask this question...
But i couldn't find any place where i could get the desired coding problems, that i should put up in a Coding contest, which we are ...
5
votes
2answers
104 views
Does there exist a common site to test AI of board games against other AIs?
I am wondering if there exists an site where people can upload their AIs to contest against each other in different board games: Chess, Gomoku, etc.
The site would accept source code of programs ...
3
votes
1answer
72 views
Single-Tasking for programming competitions
I will start with the question and then proceed to explain the need:
Given a single C++ source code file which compiles well in modern g++ and uses nothing more than the standard library, can I ...
2
votes
4answers
168 views
Coding Competition, language agnostic guidelines?
I might be doing a coding competition soon, I was wondering if anyone made one and what where the guidelines/ process.
I'd like to make the competition appealing to all devs, and I m trying to come up ...
1
vote
3answers
69 views
When taking input in programming competitions, what do I do to stop the scanner from reading input?
I have been in one competition before, and I have looked into another. But when in it, I realized I had no idea what to do about taking user input from a machine. When a normal human uses it, I know I ...
1
vote
2answers
200 views
competitive programming and input
hello all
I'm practicing for a competitive tournament that will be in my faculty in a few weeks, and thus I encountered a small problem.
The competition restricted the use of java.io.* (except ...
1
vote
1answer
472 views
ACM ICPC Programming competition problem [closed]
Possible Duplicate:
Can you answer this 2009 ACM International Collegiate Programming Contest Finals problem?
Hi,
I am attempting to do question 1 here-> ...
1
vote
1answer
56 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
0
votes
1answer
44 views
sigsegv using vector stl
#include<iostream>
#include<vector>
#include<algorithm>
#include<string.h>
using namespace std;
int main()
{
vector<int> a, b,c,d;
vector<long> Left, Right;
...
0
votes
1answer
109 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
259 views
Space invaders in least number of bytes? [closed]
I heard about Space invaders competitions where the working implementation with the fewest number of bytes wins. Do you have any examples, links, stories to tell etc from this type of competition? The ...
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
0answers
409 views
What books should every person entering a programming competition read? [closed]
Possible Duplicate:
books/sites to get good at algorithm competitions
Hi,
I had a programming competition today and didn't do as well I had hoped, so I have decided to brush up on my ...
0
votes
0answers
73 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
134 views
Optimizing a 2 parameter distance function on line segments (ACM ICPC Regionals Elim.)
This problem is a subproblem of a problem posed in the ACM ICPC Kanpur Regionals Elimination Round:
Given 2 line segments bounded by the 2D points (Pa, Pb) and (Pc, Pd) respectively, find p and q (in ...
0
votes
2answers
131 views
interpretation problem I dont know what to do?
I dont understand what I supposed to do in this exercise, I am begining programming constest, if you can help me is very appreciated, I have seen formulas, but I dont understand what to do, I feel ...
0
votes
1answer
107 views
Can someone post a program template for submitting a solution in Java in Codeforces programming competitions?
Yes I want to start programming competitions so I dont know how to submit in Java?
Answers very apreciated
bye
-2
votes
2answers
136 views
Get all Subsets of String through Dynamic Programming - Programming Contest,Interview
I have a string lets say 123
I need Output as
1,2,3,12,23,13,123 .
I know this can be achieved using Dynamic programming . So I need help.
The Length of the input string is in the range 10 ^ 6 .
...