Google Code Jam Archive — Round 1A 2012 problems

Overview

Round 1A had two fairly approachable problems and one quite difficult problem. Solving the first two problems within two hours and fifteen minutes was sufficient to advance.

Problem A was a straightforward simulation with probabilities. A greedy algorithm can be used for Problem B.

Problem C was a constraint satisfaction problem, and was quite challenging to implement in time. Only 22 people solved the large input.

SnapDragon got first place, completing problems A and B in 15 minutes each and problem C in 45 minutes. He was followed by pieguy, dzhulgakov, squark, wata, Plagapong, and omeometo all finishing within two hours.



Cast

Problem A. Password Problem Written by Bartholomew Furrow. Prepared by David Arthur and Alexander Georgiev.

Problem B. Kingdom Rush Written by Bartholomew Furrow. Prepared by Bartholomew Furrow and Onufry Wojtaszczyk.

Problem C. Cruise Control Written by Onufry Wojtaszczyk. Prepared by Onufry Wojtaszczyk and David Arthur.

Contest analysis presented by David Arthur, Bartholomew Furrow, and Onufry Wojtaszczyk.

Solutions and other problem preparation by Tomek Czajka, John Dethridge, Khaled Hafez, Sean Henderson, Luka Kalinovcic, Nikolay Kurtov, Yiming Li, Igor Naverniouk, and Adam Polak.

A. Password Problem

Problem

I have a really long password, and sometimes I make a mistake when I type it. Right now I've typed part of my password, but I might have made some mistakes. In particular, I might have pressed the wrong key while typing one or more of the previous characters. Given how likely I was to get each character right, what should I do?

I have three options:

  1. Finish typing the password, then press "enter". I know I'll type the rest of the characters perfectly. If it turns out that one of the earlier characters was wrong, I'll have to retype the whole thing and hit "enter" again -- but I know I'll get it right the second time.
  2. Hit "backspace" some number of times, deleting the last character(s) I typed, and then complete the password and press "enter" as in option 1. If one of the characters I didn't delete was wrong, I'll have to retype the whole thing and press "enter", knowing I'll get it right the second time.
  3. Give up by pressing "enter", retyping the password from the start, and pressing "enter" again. I know I'll get it right this time.

I want to minimize the expected number of keystrokes needed. Each character in the password costs 1 keystroke; each "backspace" costs 1 keystroke; pressing "enter" to complete an attempt or to give up costs 1 keystroke.

Note: The "expected" number of keystrokes is the average number of keystrokes that would be needed if the same situation occurred a very large number of times. See the example below.

Example

Suppose my password is "guest" and I have already typed the first two characters, but I had a 40% chance of making a mistake when typing each of them. Then there are four cases:

  • I typed "gu" without error. This occurs with probability 0.6 * 0.6 = 0.36.
  • I typed the 'g' correctly but I made a mistake typing the 'u'. Then I have two letters typed still, but the second one is wrong: "gX". (Here, the 'X' character represents a mistyped letter.) This occurs with probability 0.6 * 0.4 = 0.24.
  • I typed the 'u' correctly but I made a mistake typing the 'g': "Xu". This occurs with probability 0.4 * 0.6 = 0.24.
  • I made a mistake typing both letters, so I have two incorrect letters: "XX". This occurs with probability 0.4 * 0.4 = 0.16.

I don't know how many mistakes I actually made, but for any strategy, I can calculate the expected number of keys required to use it. This is shown in the table below:

"gu"    "gX"    "Xu"    "XX"    Expected
Probability0.360.240.240.16-
Keystrokes if I keep typing41010107.84
Keystrokes if I press backspace once661212 8.4
Keystrokes if I press backspace twice  88888
Keystrokes if I press enter right away77777

If I keep typing, then there is an 0.36 probability that I will need 4 keystrokes, and an 0.64 probability that I will need 10 keystrokes. If I repeated the trial many times, then I would use 4 keystrokes 36% of the time, and 10 keystrokes the remaining 64% of the time, so the average number of keystrokes needed would be 0.36 * 4 + 0.64 * 10 = 7.84. In this case however, it is better to just press enter right away, which requires 7 keystrokes.

Input

The first line of the input gives the number of test cases, T. T test cases follow. Each test case begins with a line containing two integers, A and B. A is the number of characters that I have already typed, and B is the total number of characters in my password.

This is followed by a line containing A real numbers: p1, p2, ..., pA. pi represents the probability that I correctly typed the ith letter in my password. These real numbers will consist of decimal digits and at most one decimal point. The decimal point will never be the first or the last character in a number.

Output

For each test case, output one line containing "Case #x: y", where x is the case number (starting from 1) and y is the expected number of additional keystrokes I need, not counting the letters I have typed so far, and assuming I choose the optimal strategy. y must be correct to within an absolute or relative error of 10-6.

Limits

Time limit: 40 seconds per test set.
Memory limit: 1GB.
1 ≤ T ≤ 20.
0 ≤ pi ≤ 1 for all i.

Test set 1 (Visible Verdict)

1 ≤ A ≤ 3.
A < B ≤ 100.

Test set 2 (Hidden Verdict)

1 ≤ A ≤ 99999.
A < B ≤ 100000.

Sample

Sample Input
content_copy Copied!
3
2 5
0.6 0.6
1 20
1
3 4
1 0.9 0.1
Sample Output
content_copy Copied!
Case #1: 7.000000
Case #2: 20.000000
Case #3: 4.500000

B. Kingdom Rush

Problem

Ryan is playing Kingdom Rush, a single-player tower defense game developed by Ironhide Game Studio. In Kingdom Rush, players earn stars by completing levels, in a way described below. Having more stars makes the player more powerful; so while Ryan might not be able to complete level 2 right away, he might be able to complete it after earning stars from level 1.

The real game Kingdom Rush doesn't work in quite the same way as this problem. It isn't important to have played the game in order to solve the problem.

In this problem's version of Kingdom Rush, when a player completes a level, he or she is given a 1-star rating or a 2-star rating. That rating might allow the player to earn stars as follows:

  • If the player has never completed the level before and completes it with a 1-star rating, that player earns 1 star.
  • If the player has never completed the level before and completes it with a 2-star rating, that player earns 2 stars.
  • If the player has only completed the level before with a 1-star rating and completes it this time with a 2-star rating, the player earns 1 more star.
Otherwise there is no way for a player to earn stars.

Ryan might not be able to complete every level right away. For each level, before he can complete it with a 1-star rating, he needs to have earned a certain number of stars; and he will need a larger or equal number of stars to complete that level with a 2-star rating.

For example, suppose there are two levels:

  • Level 1 requires 0 stars to complete with a 1-star rating, and 1 star to complete with a 2-star rating.
  • Level 2 requires 0 stars to complete with a 1-star rating, and 2 stars to complete with a 2-star rating.
Here's a possible series of events for Ryan:
  1. Ryan starts with 0 stars. He can choose to complete either level 1 or level 2 with a 1-star rating. He chooses to complete level 1 with a 1-star rating. Now he has 1 star.
  2. Now Ryan can either complete level 2 with a 1-star rating, or level 1 with a 2-star rating. He chooses to complete level 1 with a 2-star rating. Now he has 2 stars.
  3. Now Ryan can complete level 2 with a 2-star rating. He does that, and now he has 4 stars.
  4. Now he is done, having completed all levels with 2-star ratings and earned 4 stars (2 per level). He has completed levels 3 times: level 1 twice, and level 2 once.

Ryan is great at tower defense games, but he needs some help to beat Kingdom Rush as quickly as possible. Your job is to figure out how many times he needs to complete levels in order to earn a 2-star rating on every level.

Input

The first line of the input gives the number of test cases, T. T test cases follow. Each test case starts with a line containing a single integer N, indicating how many levels are in the game. N lines follow. The ith line contains two integers ai and bi: the number of stars it takes to earn a one-star rating or a two-star rating, respectively, on level i.

Output

For each test case, output one line containing "Case #x: y", where x is the case number (starting from 1) and y is the minimum number of times Ryan must complete levels in order to have earned a 2-star rating on every level. If it is impossible for Ryan to earn a 2-star rating on every level, y should instead be the string "Too Bad" (without the " characters, but with that exact capitalization). This indicates that Ryan is too bad at Kingdom Rush to finish the whole game.

Limits

Memory limit: 1GB.
Time limit: 30 seconds per test set.
1 ≤ T ≤ 100.
0 ≤ aibi ≤ 2001.

Test set 1 (Visible Verdict)

1 ≤ N ≤ 10.

Test set 2 (Hidden Verdict)

1 ≤ N ≤ 1000.

Sample

Sample Input
content_copy Copied!
4
2
0 1
0 2
3
2 2
0 0
4 4
1
1 1
5
0 5
0 1
1 1
4 7
5 6
Sample Output
content_copy Copied!
Case #1: 3
Case #2: 3
Case #3: Too Bad
Case #4: 6

Kingdom Rush was created by Ironhide Game Studio. Ironhide Game Studio does not endorse and has no involvement with Google Code Jam.

C. Cruise Control

Problem

Cruise control is a system that allows a car to go at a constant speed, while the driver controls only the steering wheel. The driver can, of course, turn off the cruise control to avoid collisions.

In this problem, we will consider a one-way road with two lanes, and N cars using cruise control on the road. Each car is 5 meters long and goes at some constant speed. A car can change lanes at any time if it would not cause the car to collide with some other car (touching does not count as collision). Assume that changing lanes is instantaneous and simply causes the car to switch to the other lane. We are interested in whether any driver will have to turn off cruise control eventually to avoid a collision, or is it possible for all of them to drive (possibly switching lanes, but at constant speed) without collisions indefinitely. Note that even though changing lanes is instantaneous, two cars driving side by side cannot exchange places by changing lanes at the same time.

Input

The first line of the input file gives the number of test cases, T. T test cases follow. Each test case begins with the number N. N lines follow, each describing a single car. Each line contains a character Ci (denoting whether the car is initially in the left or the right lane), two integers describing the speed Si of the car (in meters per second), and the initial position Pi of the car (in meters), denoting the distance between the rear end of the car and some fixed line across the road. All the cars are moving away from this line, and no car is behind the line.

Output

For each test case output one line containing "Case #x: y", where x is the case number (starting from 1) and y is either the word "Possible" (quotes for clarity only), if the cars can drive at the given constant speeds indefinitely, or the maximum number of seconds they can drive before somebody has to change speed to avoid a collision. Answers accurate to within 10-5 absolute or relative error will be accepted.

Limits

Memory limit: 1GB.
Time limit: 40 seconds per test set.
1 ≤ T ≤ 30.
1 ≤ Si ≤ 1000.
0 ≤ Pi ≤ 10000.
Each of the Ci characters will be either L, denoting the left lane, or R, denoting the right lane.
Initially the cars' positions are such that they do not collide, that is, if two cars i and j have the same initial starting lane (that is, Ci = Cj), then |Pi - Pj| ≥ 5.

Test set 1 (Visible Verdict)

1 ≤ N ≤ 6.

Test set 2 (Hidden Verdict)

1 ≤ N ≤ 50.

Sample

Sample Input
content_copy Copied!
4
2
L 5 10
L 100 0
3
L 100 0
R 100 0
L 50 505
6
L 30 0
R 30 2
L 10 39
R 10 42
L 25 13
L 15 29
4
L 4 0
L 2 29
L 1 35
L 1 44
Sample Output
content_copy Copied!
Case #1: Possible
Case #2: 10.0
Case #3: 1.4
Case #4: 12.0

In the first case, the faster car can shift over to the right lane and easily overtake the slower one. In the second case, the two cars driving side-by-side at 100 m/s will reach the car going 50 m/s in 10 seconds, and somebody will have to change speed, as both lanes will be blocked.

Analysis — A. Password Problem

The first challenge with Password Problem is wrapping your head around expected values. These things come up all the time and are extremely useful, so they are well worth learning. (For example, expected value is key to solving our last problem on the 2011 finals!)

Once you understand what the problem is asking, you mainly need to evaluate the expected number of keystrokes for each strategy:

  • Strategy 1: Finish typing the password, then press "enter".

    The probability that this works on the first try is x = p1 * p2 * ... * pA. In this case, you need B - A + 1 keystrokes. In the other case, you need 2B - A + 2 keystrokes. Therefore, the expected number of keystrokes for this strategy is:

    B - A + 1 + (B + 1) * (1 - x).

  • Strategy 2: Hit backspace k times, then proceed as in Strategy 1.

    The probability that this works on the first try is xk = p1 * p2 * ... * pA-k. In this case, you need B - A + 2k + 1 keystrokes. In the other case, you need 2B - A + 2k + 2 keystrokes. Therefore, the expected number of keystrokes for this strategy is

    B - A + 2k + 1 + (B + 1) * (1 - xk).

  • Strategy 3: Press enter immediately, and retype the whole password.

    This always takes B + 2 keystrokes.

The problem is asking you to calculate the minimum of all these values. There is one more catch though: if you compute each xi from scratch, your program will probably be too slow. It might take 99999 multiplications to calculate x, 99998 multiplications to calculate x1, 99997 multiplications to calculate x2, and so on. Instead, you should calculate them all together:

  • xA = 1
  • xA-1 = xA * p1
  • xA-2 = xA-1 * p2
  • etc.
Making sure your solution is fast enough to complete in the time limit is an important part of the Google Code Jam!

Here is a short Python solution:

import sys

for tc in xrange(1, int(sys.stdin.readline())+1):
  A, B = [int(w) for w in sys.stdin.readline().split()]
  p = [float(w) for w in sys.stdin.readline().split()]
  best, x = B + 2.0, 1
  for i in xrange(A):
    x *= p[i]
    best = min(best, (B - i) + (A - i - 1) + (B + 1) * (1 - x))
  print 'Case #%d: %f' % (tc, best)

The Large Input and Underflow

There is one trick on this problem that caught quite a few contestants, and that involves a subtlety with how floating point numbers work. Let's suppose you calculate xi in a slightly different way:

  • x = p1 * p2 * ... * pA
  • x1 = x / pA
  • x2 = x1 / pA-1
  • etc.

At first glance, this looks completely equivalent to the solution above. Unfortunately, it is wrong to do this for two reasons. First, if one of the pi values is 0, you are in trouble. Second, it turns out that even a 64-bit floating point number reserves only 11 bits for the exponent. This means that it cannot store values much less than 2-1000. These very small values get rounded down to 0. Normally, you wouldn't care about values this small, but if you are multiplying 100,000 probabilities together, it becomes an issue. After rounding to 0, you will end up with every x value, including xA, being 0, and then you are in trouble!

Some people reported failing tests due to this bug, and were then able to fix it by switching to the "long double" data type in C++. However, they were lucky! Even long double has the same issues.

If you ever need to combine a lot of multiplications and divisions in the future, where intermediate values might get very small, it helps to work in log space:

A * B / C = exp( log(A) + log(B) - log(C) )

Do you see why this approach avoids the problem?

Test Data
info We recommend that you practice debugging solutions without looking at the test data.

Analysis — B. Kingdom Rush

This problem was an interesting one to create. In the actual game Kingdom Rush, there are three stars per level, "challenge" levels, and you can't try level 2 until you've beaten level 1 with at least one star. Coming up with a problem that was solvable, while maintaining the same feeling as the game that inspired it, was a balancing act.

We solved this problem with a greedy algorithm. At every step of the algorithm, Ryan will make a decision about which level to play, and his decision will be based simply on the properties of the levels available, and what he's done so far.

First, let's observe that Ryan should only complete a level if he's never completed it before, or if he can go from a one-star rating to a two-star rating. There's simply no point in beating a level otherwise. When we're talking about levels below, we'll ignore levels that he shouldn't complete for this reason.

Second, if Ryan ever reaches a state where he can't complete any of the remaining levels, then he is "TOO BAD" to beat the game. This will happen independent of the order in which he completes the levels.

Third, if Ryan can complete a level with a two-star rating, he should do it immediately. There's no reason for him to wait: he can earn those two stars (or one star) with one level completion either now or later. If there are multiple levels with two-star ratings that Ryan could complete, he should choose one arbitrarily; he can do the other one next.

Now we've covered all situations except for one: when the only levels Ryan can complete are levels that he can complete with a one-star rating. Consider two levels like that, level 0 and level 1:
a0 b0
a1 b1
The values of a0 and a1 don't matter: by assumption, Ryan has at least that many stars already. Let's assume without loss of generality that b0 < b1. Which level should Ryan complete first?

Let's remember that Ryan's objective is to complete levels the minimum number of times. In the worst case, it will take Ryan 4 completions to finish those two levels: two to get him a one-star rating in both levels, and two more to get him a two-star rating in both levels. But earning stars from these levels (or other levels) might allow him to complete one of them with a two-star rating without having to complete it with a one-star rating first.

Here's a possible series of events. Assume Ryan starts with S stars. We'll decide later whether k is 0 or 1:

  1. Ryan completes level k with a 1-star rating and earns 1 star.
  2. Ryan completes other levels and earns s stars.
  3. Ryan completes level 1-k with a 2-star rating.
Which choice of k makes this scenario possible? If k=0, then this is possible iff S + 1 + s ≥ b1. If k=1, then this is possible iff S + 1 + s ≥ b0. Since b0 < b1, then this is possible with k=0 only if it's possible with k=1. So we might as well simply choose k=1, and have Ryan choose the level with the highest value of b.

So to summarize, Ryan's strategy should be:

  1. While there is any level remaining that Ryan hasn't completed yet, or any level for which he can earn a higher rating than he previously had:
    • If he can earn a two-star rating on any of those levels, he should complete one of those levels (chosen arbitrarily).
    • Otherwise, if there is some set of levels on which he can earn a one-star rating, he should complete the one of those levels with the highest value of b.
  2. If Ryan has beaten all levels with a two-star rating, he's done. Otherwise he's TOO BAD.

By simulating this strategy, we can see whether Ryan can beat Kingdom Rush, and the smallest number of level completions he can do it in.

Test Data
info We recommend that you practice debugging solutions without looking at the test data.

Analysis — C. Cruise Control

This is a challenging problem requiring some insights and a careful implementation, making it a really tough nut to crack!


Solving the small - simulation

Let's look at some car A. If there is no car that overlaps with A (that is - no car that is less than five meters ahead or behind of A), then it does not matter which lane A currently is in, as it can change lanes instantaneously with impunity. Thus, the crucial moment when we have to make a decision is when A overtakes some other car B in front of it (that is, at the moment when A is five meters behind B and getting closer), or when some other car C overtakes A.

Since all cars go at a constant speed, after any car A overtakes a car B, car B will never overtake A. This means that cars will not overtake each other very many times in the small case - the total number will be at most the number of pairs of cars, i.e. 15. Also notice that when one car overtakes another, there are only two possibilities that we need to explore: either the faster car takes the right lane and the slower car takes the left lane, or the reverse happens. If neither possibility is viable (because one of the cars is not able to take the lane we want it to take), then someone has to turn off cruise control. These two observations allow us to do a direct simulation of all possibilities.

To do this, we begin by finding out all moments in time when two cars would intercept one another, and we then look at them in order starting from the earliest. Whenever two cars meet, we check which lane they are in right now, and whether they can change to the other lane. If both cars can change lanes, we have two possibilities, and we branch out to explore them both. If one of the cars is blocked, we have only one possibility - the car which is free to switch lanes has to take the free lane, and we continue without branching. The same thing happens if both cars are blocked but are in different lanes. If the two cars are blocked in the same lane, we know someone has to turn off cruise control, and we return the current time from this branch. Finally, if we process all the overtaking events and still nobody needs to turn cruise control off, we have found a way for everybody to drive on cruise control indefinitely - we now already know the answer for the whole test case!

Since we want everybody to continue without turning off cruise control as long as possible, in the case with two branches, we should choose the branch which returned the higher value. As we branch at most 15 times, and we are able to check whether a car can change lanes simply by examining all other cars, our solution will easily run in time.


Solving the large - postponing choice

The previous strategy will obviously not cut it for the large test case. With 50 cars, there could be 1225 interceptions, and there is no way you can try 21225 different possibilities! We will have to postpone making choices for as long as possible to avoid branching.

Suppose we have two cars: A and B, and A overtakes B at some point. They now drive side by side with A gaining on B over time. One of them is occupying the right lane and one is occupying the left lane, but we do not know which is which. If A manages to move a full five meters ahead of B, it is again free to change lanes, and the choice - which side it passed B on - is irrelevant.

On the other hand, let's see what happens when a third car, C, comes along and tries to overtake whoever is in the back (let's say it's still A); moreover assume that C is driving in the right lane, and cannot switch to the left. This means that if A is in the right lane, we will have to turn cruise control off now; on the other hand if A is in the left lane, we will be able to drive on for a while. This means that putting A in the left lane was a strictly better choice.

This leads to the idea of postponed choices. Although the choice of which lane A takes had to be made some time ago, it becomes relevant only now - so let's say we reveal our choice only now. Before C came along, we think of A and B as being in an indeterminate state, with either car possibly being in the left lane, and the exact choice is forced on us only with the arrival of C (one of the Googlers working on this problem said it reminded him strongly of Schroedinger's cat).


Solving the large - undetermined lanes

To formalise this approach, we will say that at any given moment of time, a car either is in a fixed lane or in an undetermined lane. For instance, in the situation described before, car C was fixed in the right lane, while cars A and B were initially in undetermined lanes. When C overtook A, the lanes of A and B became fixed (to the left and right lane, respectively).

Notice that we also had additional information - although A and B were in undetermined lanes, we knew that they were nonetheless in different lanes. In fact, the state of the whole system can be described at any given time by the following information:

  • for each car, whether it is fixed in the right lane, fixed in the left lane, or in an undetermined lane,
  • for each pair of cars in undetermined lanes, whether they are necessarily in the same lane, in different lanes, or whether they are independent of each other.
At this point, you might wonder how two undetermined-lane cars could be forced to be in the same lane. The way this happens is that there is a third car (also undetermined) that blocks them both from changing lanes. If you examine the fourth sample case thoroughly, you will find that this is exactly what happens at the twelfth second. The cars with speeds 2 and 4 are in undetermined lanes but they are necessarily the same lane, and so one of them has to turn off cruise control.

The initial state of the system is easy to calculate. Any car that is initially adjacent to another one is in a fixed lane (the lane it starts in). Any other car is in an undetermined lane, and independent from all others. The tricky question is how to update this state over time.


Solving the large - updating the state

The state changes in two situations - when two cars get close to each other (and their states stop being independent), and when two cars stop being close to each other. We can calculate all these events up front and order them by time, just as in the small case. This takes O(N2 log N) time.

When two cars become close, they become interdependent - they have to be in different lanes. If one of them has a fixed lane, the other one now also has its lane fixed; if both were undetermined and independent, they are now still undetermined, but they have to be in different lanes. In other cases either nothing happens - like when one of the cars was fixed in the right lane, and the other one was fixed in the left lane; or someone has to turn off cruise control and we have solved the problem - like when both cars are forced in the left lane, or both are undetermined but they are forced to be in the same lane.

Moreover, when an undetermined car becomes fixed lane, it impacts all the other cars that are dependent on it - they also become fixed lane. Similarly, if two independent cars A and B become interdependent and we had a car C in the same lane as A and a car D in a different lane from B, we gain the information that C and D must be in the same lane. More generally, whenever we gain information due to a pair of cars A and B becoming close, we have to update information about any other pair of cars C and D with C dependent on A and D dependent on B. Fortunately, updating the state is very straightforward! A nice trick is to use +1 and -1 to denote the left and right lanes; and to use -1 to mean two cars are in a different lane, and +1 to mean they are in the same lane (and 0 to mean "undetermined" and "independent"). Then if, for example, we learn that A is in the right lane (A = -1), and we know that A and B are in different lanes (AB = -1), then B is in lane A * AB = 1 - the left lane. Try this out and see how it works!

What happens when two cars stop being close? Well, if neither of them can change lanes (due to some other adjacent cars), nothing happens. They remain dependent, just as they were. The only moment when something does change is when a car is free to change lanes - its state immediately becomes undetermined and independent from all other cars.


Solving the large - putting it together

So let's see how the solution will work. We first determine the list of events (two cars becoming close or becoming far away), ordered by time. We also determine the initial state of each car (initially each car is either fixed-lane, or undetermined and independent from all others). We keep the state of each car in an array, and the dependency information for each pair of cars in a two-dimensional array.

For each event when two cars become close, we check if they are able to take opposite lanes (that is - they are not both fixed to the same lane, and they are not dependent to be in the same lane). If yes, we update their dependency (and possibly lane-fixedness), and update the dependencies between all their dependents). This takes O(N2) time.

For each event when two cars stop being close, we check whether either of them can change lanes freely. If yes, we mark that car as undetermined and independent from all others. This takes O(N) time.

As we have at most O(N2) events to process, the whole solution will run in O(N4) time, which is fast enough for the limit of 50 we have on N.


Solving the large - optimizing

It's not hard to see that the solution we have could be optimized. To do this, let's notice that instead of keeping (and updating) the full dependency matrix, we can think in terms of groups of cars, since if A and B are dependent and B and C are dependent, then A and C are dependent as well. The exact nature of the dependency can be deduced from the other two dependencies. Thus, we need only keep one representative from each group of co-dependent cars, and for each car in the group remember whether it is in the same lane as the representative, or in a different lane. When two groups merge, we can merge them in O(N) time now: first we check whether the representatives are in the same lane, and then we switch everybody in one of the groups to use the representative from the other group. This makes our solution run in O(N3) time. For extra credit, you might want to consider how to make the solution run in O(N2 log N).

Fun fact: This problem was conceived when the author was driving on US interstate highways, and was annoyed by having to turn off cruise control frequently due to sub-optimal choices by other drivers who were unable to solve this problem.

Test Data
info We recommend that you practice debugging solutions without looking at the test data.

Statistics — A. Password Problem

Test set 1: 3506 correct solutions (95.1% solve rate)

First
tomconerly 6:45
peter50216 8:06
TripleM C++, 8:27
tikitikirevenge C++, 9:22
rudradevbasak C++, 9:23
Shortest
badguy C++, 28 bytes
aruff Python, 219 bytes
kusano Python, 247 bytes
EelVex J, 290 bytes
watashi Ruby, 318 bytes

Test set 2: 2329 correct solutions (63.2% solve rate)

First
tomconerly 6:45
peter50216 8:06
TripleM C++, 8:27
tikitikirevenge C++, 9:22
rudradevbasak C++, 9:23
Shortest
aruff Python, 219 bytes
kusano Python, 247 bytes
watashi Ruby, 318 bytes
yuhang C++, 318 bytes
matsusho C++, 322 bytes

Statistics — B. Kingdom Rush

Test set 1: 1908 correct solutions (51.8% solve rate)

First
Naonao Java, 13:43
LayCurse C, 14:36
jonathanasdf 15:34
totalfrank C++, 15:55
ACRush aka ACRushTC 16:56
Shortest
aruff Python, 433 bytes
GJH C++, 563 bytes
derekzhang Perl, 593 bytes
kusano Python, 640 bytes
dzetkulict C++, 648 bytes

Test set 2: 1616 correct solutions (43.8% solve rate)

First
Naonao Java, 13:43
LayCurse C, 14:36
jonathanasdf 15:34
totalfrank C++, 15:55
ACRush aka ACRushTC 16:56
Shortest
aruff Python, 433 bytes
GJH C++, 563 bytes
derekzhang Perl, 593 bytes
kusano Python, 640 bytes
dzetkulict C++, 648 bytes

Statistics — C. Cruise Control

Test set 1: 65 correct solutions (1.8% solve rate)

First
hos.lyric D, 69:44
SnapDragon C++, 74:11
pieguy C++, 76:17
dzhulgakov C++, 83:55
ZhouErjin C++, 87:41
Shortest
ZhouErjin C++, 2226 bytes
Maryann C++, 2377 bytes
AEtheReal C++, 2472 bytes
omeometo C++, 2603 bytes
SnapDragon C++, 2634 bytes

Test set 2: 22 correct solutions (0.6% solve rate)

First
SnapDragon C++, 74:11
pieguy C++, 76:17
dzhulgakov C++, 83:55
s-quark 102:12
wata Java, 103:45
Shortest
omeometo C++, 2603 bytes
SnapDragon C++, 2634 bytes
ploh C++, 2765 bytes
Gluk C++, 2918 bytes
Plagapong C++, 3330 bytes