Problem
Let be a positive integer. Liu Bang and Xiang Yu have a stick of length and want to divide it between themselves. Liu first marks at most points on the stick, and then Xiang marks at most points on the stick. All marked points are distinct. The stick is cut at all marked points. Liu and Xiang then take turns claiming any unclaimed piece, with Liu moving first, and each aims to maximize the total length obtained.
Determine the largest real number such that Liu can guarantee pieces of total length at least , regardless of Xiang's play.
Solution
The largest guaranteed length is
Set
Then
If the final piece lengths, sorted in nonincreasing order, are , optimal play gives Liu the odd-indexed pieces. His total is therefore
because the sum of all pieces is .
This is the value of the draft. Liu can obtain at least the odd-indexed sum by always taking a largest remaining piece. Before his th turn, at most pieces have been claimed, so at least one of remains; Liu's choice is therefore worth at least .
For the reverse inequality, use induction on the number of pieces. If Liu first takes , then Xiang is the first player on the sorted list with removed. By the induction hypothesis, Xiang can secure the odd-indexed sum of that shorter list. This sum is at least
Indeed, before the removed term, pair each with and use ; after the removed term, the terms contributing to the shorter list's odd-indexed sum line up exactly with the remaining even-indexed terms of the original list. Thus Liu receives at most . Together with the greedy lower bound, this proves the claimed draft value.
Liu's lower bound
Liu divides the stick initially into the geometrically increasing pieces
Their sum is , so this uses exactly marks.
After Xiang adds at most marks, there are at most final pieces. Tag each final piece by the initial geometric piece from which it came, and sort the tagged pieces by length. Pair consecutive sorted pieces:
There are fewer such pairs than the possible tags. Form a graph whose vertices are the tags and whose edges join the two tags in each consecutive pair, allowing loops or repeated edges. Since the graph has fewer edges than vertices, at least one connected component has no odd cycle: a component containing an odd cycle has at least as many edges as vertices, so not every component can have that property. Such a component is bipartite. Two-color it by and , and color every other vertex . This gives coefficients in , not all zero, with opposite coefficients at the ends of every edge.
For a fixed tag, the lengths of all pieces carrying that tag add to one of . Hence the coefficient-weighted sum of all tagged pieces is
The signed binary integer in parentheses is nonzero: at its least-index nonzero coefficient, reduction modulo prevents the remaining higher powers of from cancelling it. Its absolute value is therefore at least , so the absolute value of the weighted sum is at least . On every consecutive pair, the two coefficients are opposite, so that pair contributes either or plus or minus its length difference. If there is one unpaired final piece, its contribution has absolute value at most its length. Therefore bounds the absolute value of the whole weighted sum above by
Thus , and Liu receives at least
Xiang's upper bound
Now let Liu make an arbitrary initial partition into positive pieces.
If , Xiang bisects every initial piece. The final pieces occur in equal pairs, so their sorted alternating sum is . Liu then receives exactly .
It remains to consider . There are subset sums of the initial piece lengths, all in . After sorting them, the consecutive gaps have total at most , so one gap is at most . The corresponding subsets are distinct. Removing their common intersection leaves two disjoint, not-both-empty collections with the same difference of sums, hence with total lengths differing by at most
Xiang refines the pieces in these two collections greedily into equal pairs: compare the first remaining lengths, match the smaller one, split the larger one if necessary, and continue. If the two collections contain original pieces in total, each matching step consumes at least one currently remaining source piece, so they create at most refined pieces. Every unused initial piece is bisected. Combining the two counts gives at most final pieces, so Xiang uses at most new marks. Up to permutation, the final list consists of duplicated equal pieces and a remainder whose total length is exactly the difference between the two selected subset sums, and is therefore at most .
When two equal entries are inserted into a sorted list, the equal values may be placed next to each other; their two opposite contributions cancel without changing the alternating sum of the remaining entries. Removing all duplicated pairs therefore leaves only the sorted remainder. Pairing adjacent terms shows that the alternating sum of a sorted nonnegative list lies between and its ordinary sum, so
Therefore Xiang can ensure that Liu receives at most
The lower and upper bounds coincide, proving the claimed value.