Detailed Editorial for problem "The Struggle" from XXII Opencup, Grand Prix of XiAn

Revision en7, by nocriz, 2021-11-01 17:20:37

Hello, Codeforces!

"The Struggle" is a problem I authored which appeared in the HDU Multi-university Training, the Ptz Summer Camp and the Open Cup. Despite appearing in contests where there are a total of ~1300 three people teams, I know of few (possibly no more than 5) people who have learned and independently implemented the solution.

The problem is pretty much fun and the solution is quite easy to implement (actual implementation < 2kb). From this blog you will easily learn how the algorithm works and how to implement the solution effortlessly. You will become able to solve this OpenCup problem that few people have solved, up till today!

The problem statement is very simple: Given an ellipse $$$E$$$ that is contained in $$$(0,4 \times 10^6) \times (0,4 \times 10^6)$$$, calculate the value $$$\sum_{(x, y) \in E}(x \oplus y)^{33} x^{-2} y^{-1} \mod 10^9+7$$$ over all integer points $$$(x,y)$$$.

While the solution does not seem to be obvious, we shall consider a easier case: how should we compute $$$\sum_{x = 0}^{2^n-1}\sum_{y = 0}^{2^n-1} (x \oplus y)^{33} x^{-2} y^{-1} \mod 10^9+7$$$? i.e. If the aria is a square $$$[0,2^n-1] \times [0,2^n-1]$$$, how to calculate the value? (For our purposes we shall consider $$$0^{-2} = 0^{-3} \equiv 0 \mod 10^9+7$$$.)

This is quite simple! This can be done in $$$n \log n$$$ time, using an algorithm called "Fast Walsh Hadamard Transforms" or FWHT or FWT or fast xor convolution. The convolution basically calculates $$$c_i = \sum_{x = 0}^{2^n-1}\sum_{y = 0}^{2^n-1} [x \oplus y = i]a_xb_y$$$. If we set $$$a_i = i^{-2}$$$ and $$$b_i = i^{-3}$$$, we can calculate $$$\sum_{i = 0}^{2^n-1} c_i^{33}$$$ and this will be the answer for our example.

The algorithm complexity of this question is $$$O(n \log n)$$$, where $$$n = \max_{(x,y) \in E} \max(x,y)$$$. Consider using the FWT algorithm for calculation. We consider xor convolution which can only process one at a time a $$$[x\times2^n,x\times2^n+2^n-1] \times [y\times2^n,y\times2^n+2 ^n-1]$$$ square. We first process all the largest squares that are all inside the ellipse, and then process the next largest squares, and so on...

But the complexity of this algorithm is $$$O(n \log^2 n)$$$, which is not fast enough. Consider optimizing this algorithm. The method is to perform FWT from the bottom up, and calculate the squares that need to be calculated at each layer. After calculating the inner product of FWT array, we should not calculate the inverse FWT, but should "accumulate" it on the result array. (See author's solution for better understanding)

One issue in the complexity analysis of this question is to prove that the sum of the side lengths of all squares is $$$O(n \log n)$$$. This fact can be proved on the condition that the border function is a monotone function, and the boundary of the ellipse can be split into four monotone functions. The idea of the proof is to see that the y-intervals corresponding to each x-interval must be a constant plus some "extra" intervals, and for x-coordinate intervals of the same size, the total length of the "extra y-intervals" cannot exceed $$$n$$$. Since there is only $$$\log n$$$ sizes for x-intervals, the proof is done.

Tags #struggle, opencup, editorial, tutorial

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en23 English nocriz 2021-11-02 02:33:56 0 (published)
en22 English nocriz 2021-11-02 02:32:38 1088
en21 English nocriz 2021-11-01 18:01:53 419
en20 English nocriz 2021-11-01 17:57:36 892
en19 English nocriz 2021-11-01 17:51:00 61
en18 English nocriz 2021-11-01 17:49:52 3
en17 English nocriz 2021-11-01 17:49:28 834
en16 English nocriz 2021-11-01 17:47:04 4243
en15 English nocriz 2021-11-01 17:45:33 220
en14 English nocriz 2021-11-01 17:41:48 55
en13 English nocriz 2021-11-01 17:40:49 105
en12 English nocriz 2021-11-01 17:39:31 5892
en11 English nocriz 2021-11-01 17:37:18 529
en10 English nocriz 2021-11-01 17:29:32 56
en9 English nocriz 2021-11-01 17:28:52 18
en8 English nocriz 2021-11-01 17:28:10 715
en7 English nocriz 2021-11-01 17:20:37 2 Tiny change: '^n-1} c_i^33$ and this' -> '^n-1} c_i^{33}$ and this'
en6 English nocriz 2021-11-01 17:20:07 409 Tiny change: 't a time a$[x\times2' -> 't a time a $[x\times2'
en5 English nocriz 2021-11-01 17:14:34 227
en4 English nocriz 2021-11-01 17:10:04 200
en3 English nocriz 2021-11-01 17:06:32 304
en2 English nocriz 2021-11-01 17:01:48 389
en1 English nocriz 2021-11-01 16:57:29 2205 Initial revision (saved to drafts)