Tagged Questions
The google-code-jam tag has no wiki summary.
30
votes
11answers
3k views
Very small programs to improve programming skills?
I realize that to become a better programmer, you need to program!
So obviously the more practice, the better you become.
My problem is this. I am currently in university, and I find my course load ...
17
votes
23answers
5k views
Code Golf: Decision Tree
In Google Code Jam 2009, Round 1B, there is a problem called Decision Tree that lent itself to rather creative solutions.
Post your shortest solution; I'll update the Accepted Answer to the current ...
16
votes
15answers
1k views
File Fix-it codegolf (GCJ 2010 1B-A)
Last year (2009), the Google Code Jam featured an interesting problem as the first problem in Round 1B: Decision Tree
As the problem seemed tailored for Lisp-like languages, we spontaneously had an ...
11
votes
5answers
543 views
CodeJam 2011: Solution for Gorosort?
The problem can be found here:
http://code.google.com/codejam/contest/dashboard?c=975485#s=p3
I don't understand why
answer = no. of elements that are not in the correct position
For example, ...
6
votes
1answer
313 views
Different Combinations algorithm (Candy Splitting)
Yesterday I paticipated in the Google code jam contest. There were that candy splitting problem.
http://code.google.com/codejam/contest/dashboard?c=975485#s=p2
I designed an algorithm that basically ...
5
votes
5answers
472 views
what does this C++ line of code mean “sol<?=f((1<<n)-1,i,0)+abs(P[i])*price;”
Could anyone help me to understand following line of code:
sol< ?=f((1<< n)-1,i,0)+abs(P[i])*price;
I am studying an algorithm written using c++ and it has following operator < ?= . My ...
5
votes
4answers
491 views
Are There Good Sites/Blogs about CodeJam Problems & Solutions?
I'm a programmer with some knowledge in C++, Objective-C and stuff like PHP. Google CodeJam sounds interesting.
Any blogs/sites with Model Problems for CodeJam and their solutions for practice ?
4
votes
1answer
203 views
Help to understand Google Code Jam 2011 Candy Splitting problem
I'm participating in google code jam. Before anything I want to say that I don't want anyone to solve me a problem "to win", or something like that. I just want some help to understand a problem I ...
4
votes
6answers
599 views
Google Code Jam 2010 Large DataSets Take Too Long to Submit
I'm participating in the 2010 code jam and I solved two of the problems for the small data sets, but I'm not even close to solving the large data sets in the 8 minute time frame.
I'm wondering if ...
3
votes
2answers
384 views
Explain this O(n log n) algorithm for the Cat/Egg Throwing Problem
This problem (How many cats you need to throw out of a building in order to determine the maximal floor where such a cat will survive. Quite cruel, actually), has an accepted answer with O(n^3) ...
3
votes
5answers
467 views
Faster or more memory-efficient solution in Python for this Codejam problem
I tried my hand at this Google Codejam Africa problem (the contest is already finished, I just did it to improve my programming skills).
The Problem:
You are hosting a party with G guests
...
3
votes
2answers
722 views
Google Codejam 2009 Qualification problem: Watershed in C++
I tried out this Codejam problem and produced a valid solution in C++. There is a Python solution on the website. Was wondering if any C++ people would offer some improvements/optimizations to this ...
3
votes
3answers
1k views
awkward monad transformer stack
Solving a problem from Google Code Jam (2009.1A.A: "Multi-base happiness") I came up with an awkward (code-wise) solution, and I'm interested in how it could be improved.
The problem description, ...
2
votes
1answer
600 views
How to solve a Google Code Jam problem?
This question actually rephrases that one. The code jam problem is the following:
You are given a complete undirected graph with N nodes and K "forbidden" edges. N <= 300, K <= 15. Find the ...
2
votes
1answer
406 views
An algorithm for solving Google Code Jam tutorial problem C
I'd like to understand the algorithm that solves Google Code Jam, Tutorial, Problem C. So far I wrote my own basic implementation that solves the small problem. I find that it's unable to deal with ...
2
votes
2answers
445 views
Google Code Jam 2008: Round 1A Question 3
At Google Code Jam 2008 round 1A, there is problem:
Calculate last three digits before the
decimal point for the number
(3+sqrt(5))^n
n can be big number up to 1000000.
For example: if n = ...
1
vote
3answers
127 views
Source style for Google Code Jam
I plan on doing the Code Jam competition next year. The problem is (something that I can't find anywhere) how do I set up my code to accept input and return an output?
I'm just confused as to how I ...
1
vote
1answer
267 views
GCJ - Hamiltonian Cycles
Code jam problem is the following:
You are given a complete undirected graph with N nodes and K "forbidden" edges. N <= 300, K <= 15. Find the number of Hamiltonian cycles in the graph that do ...
1
vote
3answers
163 views
How to make it more Pythonic? [closed]
I'm learning Python. I found this problem from Google Code Jam. And solved it by writing this code. It works correctly But What are the other possibilities to make this code more Pythonic, Increase ...
1
vote
1answer
143 views
Can someone explain one of the algorithms that solves this Google Code Jam problem?
I'm referring to Shopping Plan problem from the Practice Problems. Here is a link to the solutions page.
0
votes
1answer
168 views
How can I do file i/o without fstream for competitions like google code jam?
Let me preface this question by saying I am not a very experienced programmer.
For competitions like google code jam, I write code like this:
#include <fstream>
using namespace std;
int ...
0
votes
4answers
389 views
Double precision values
Just a day before I participated in the qualification round of Google Code Jam. This is my first experience of such an online coding contest. It was really fun.
There were three problems given of ...