Tagged Questions

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
311 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 ...
3
votes
2answers
383 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
2answers
720 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 ...
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
1answer
266 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
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.