Editorial for Baltic OI '10 P4 - Matching Bins


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

Let s1,,sn be the input sequence of bins and sim for i=1,,n. The k leftmost bins can be put into the next k bins in some order if and only if 2kn and there exists a permutation p of the numbers 1,,k, such that

si<sk+p(i) for i=1,,k(1)

The solution to the problem is the largest k satisfying condition (1). Assume that k is a solution and p is a permutation satisfying condition (1). Let

  • x=max(s1,,sk) and x=si
  • y=max(sk+1,,sk+k) and y=sk+j

It is obvious that x<y. Assume that p(i)=k+jj and p(ii)=k+j. Then

si<sk+jjsk+j siisi<sk+jj

Therefore we can modify the permutation p such that p(i)=j and p(ii)=jj, and the modified p also satisfies condition (1). Let L(x) be the number of bins of size x in the first k bins, and R(x) be the number of bins of size x in the next k bins, that is

L(x)=|{i:1ik,si=x}|x=1,,mR(x)=|{j:k+1j2k,sj=x}|x=1,,m

Define R(m+1)=0 and D(m+1)=0 and

D(x)=D(x+1)+R(x+1)L(x)x=m,,1

Now we can state that the k leftmost bins can be put into the next k bins in some order if and only if condition (2) holds.

D(x)0x=m,,1(2)

Values of L(x) and R(x) can be computed in Θ(n) running time and then checking for the condition (2) takes O(m) time. Therefore for a given value of k we can check whether k is a solution in O(mn) time. Moreover, if we already computed the values of L and R for a given k then for k1 we have to modify L(k), R(k), R(2k) and R(2k1) only. As a consequence, we obtain an O(mn) worst case running time algorithm. The required memory is Θ(m+n).

We can speed up a bit by recomputing only those D(x) that might be changed by decreasing the value of k.


Comments


  • 0
    monaxia  commented on Aug. 27, 2024, 2:15 p.m. edited

    What does "ii" and "jj" mean? it is just literally i * i and j * j? Sorry I'm not used to read solutions. Thanks