Thursday, March 28, 2024
 
contentN

Jan_Kuipers is the new Algorithm Champion


Discuss this match
Friday, June 29, 2007
Introduction by Olexiy

Jan_Kuipers is the Algorithm Champion of the 2007 TopCoder Open. Check out Petr's analysis on this year's finals. Congratulations!

DayTrader

by legakis

There are two important points to realize about this problem:

  1. At any time, you either want to have all of your money in stock A, all of your money in stock B, or not invested at all.
  2. The only times you would buy or sell a stock are when either stock price changes slope (the times listed in the input arrays).

Given a sorted combined list of the times in the input arrays, you can calculate by what factor you can increase your money in each interval independently. For each interval, if the slopes are both negative you would hold on to all your money (a factor of 1.0). If either stock is positive, you pick the stock with the greater slope and compute the factor as the ending price of the chosen stock divided by its starting price. If the interval is bounded on either end by the other stock changing price, and you are not explicitly given your chosen stock's price at the beginning and/or end of the interval, you just need to compute it by linear interpolation.

Your final profit is $1000 times the product of the factors for each interval, minus your $1000 initial investment.

Rafting

by Mike Mirzayanov

  1. First of all, solve the following subproblem. Let's we are given a non-empty subset of sites S, and a pair of sites a and b of subset S. We want to find the minimal time the man needs to visit all sites of S, leaving his raft only once. And it being known that he visits a first, and b - last. Let's assume that the man comes ashore at the point with coordinate x. Then let fS,a,b(x) be a minimal time of overland route meeting the above conditions. Intuitively obvious that this is a convex function. We can formally proof this fact by not very difficult analysis of precise formulas. Let's try to calculate fS,a,b(x). Clearly, that the man reaches site b from site a, having visited all sites of subset S (yep, the traveling salesman problem). Assume that we already know the time for that part of the trip. It appears from this, that we can find the raft's position at the moment when the man is at the b site. Let coordinate of this point be xb. Further the man needs a way to reach any river's point at the same time with his raft. If we take a distance from xb to the place of a meeting we get quadratic equation in one unknown (distance from xb to that tryst). The complexity of finding fS,a,b(x) is O(1). Using a ternary search algorithm we find minx{fS,a,b(x)}. Moreover we can easily define a point where the man comes ashore and the point where he comes back on it.
  2. Now let's solve the main problem. The man way contains parts where he leaves the raft and on each of such part he visits some subset of sites with the fixed first and last sites (a and b). For every such part the correspondent raft's segment of a way (without the man) is assigned. In the optimal solution every such segment corresponds to an optimal segment for given (S, a, b) defined above (in item 1). Let's assume that is not truth. Start to shift the segment to the segment from item 1 (S, a, b). Due to function convexity the value begins decrease that cannot be. Thus it either coincides or touches another segment that is the meaningless action (why one needs to visit the raft for a moment?).
  3. Thus let's iterate thought all possible set partitions, for the sites set. For each subset in a partition let's choose a and b sites and find the correspondent optimal segments (see item 1). If they are not intersect let's update the answer with the sum of minimal values of minx{fS,a,b(x)}.

RepeatingFreeStrings

by Mike Mirzayanov

Let Z[i] be a quantity of all binary, repeating free strings of length i: Z[1] = 2, Z[2] = 2, Z[3] = 4, Z[4] = 6, Z[5] = 12, ...

We should proof that Z[2*n + 1] = 2*Z[2*n] (odd case), and Z[2*n] = 2*Z[2*n-1] - Z[n] (even case).

In the odd case: let's consider the odd string that has some prefix which is equal to a suffix. Let its length be L. If L > n then another shorter prefix with the same property exists, and so on.

This is an example:
If there is a prefix-suffix matching with length 3 (n = 2) then a prefix-suffix matching with length 1 exists too.

01010                =>   01010
    01010                           01010

Thus, if the odd string is not a repeating free it contains a prefix (with length <= n) equals to a suffix. But it means that if we delete the middle character from the string, the resulting string will be non-repeating free too. Obviously that the inverse fact is also correct. If we insert 0 or 1 in the middle of any, even repeating free string, the result will be repeating free too. Therefore, Z[2*n+1]=2*Z[2*n].

In the even case: similarly, if the even string is not repeating free, it has a prefix with length not greater than n and equals to a suffix. Thus we can insert 0 or 1 on the left hand of the middle character in the odd repeating free string. In the most cases the result will be repeating free too. For example, we had XXXYXXX, after inserting the character Z we get XXXZYXXX.

One exception is the resulting string, consisting of two equal halves (XXXZ == YXXX). This exception takes place in Z[n] cases (there are 2^n such strings, but in 2^n-Z[n] of those cases the previous odd-length string has a prefix/suffix with length less than n). So, Z[2*n] = 2*Z[2*n-1]-Z[n].

All these approaches help us to create a function which returns a quantity of repeating free strings matching for the given pattern (it consists of '0', '1' and '?'). For example (odd case): count('?1?0?') = 2*count('?10?'), count('1?100') = count('1?00'). In the even case, we should intersect the left and the right parts of the pattern, and subtract from the result the count(X), where X is an intersection.

To find k-th lexicographical string we should fill the pattern from the left to right and analyze the correspondent quantities.



contentS