Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

Блог пользователя snorkel

Автор snorkel, история, 4 года назад, По-английски

Hello, I'm interested in the solution of "E — Coffee Central" from the following CF GYM contest. It's actually ICPC World Finals 2011 problem.

I've searched on internet but wasn't able to find the full solution. Some briefly mentioned you should rotate the points by 45 degree, but I don't understand why should I and how then proceed.

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +11 Проголосовать: не нравится

Rotating by 45 degrees transforms the diamond-shaped Manhattan disks into axis-aligned square Chebyshev disks. Then, for a given value of $$$m$$$, the number of coffee shops that can be reached as a function of (rotated) position is the pointwise sum of $$$n$$$ axis-aligned rectangular indicator functions, which can be easily computed in $$$O(4n + (dx + dy)^2)$$$ with 2D prefix sums.

(For completeness I should mention that many of the points in the rotated grid will not correspond to integer points in the original grid. To deal with this you can either check this condition and calculate the max value while calculating the 2D prefix sums, or just loop over every valid coordinate separately later.)

  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится +1 Проголосовать: не нравится

    What do you mean by disk? I can't find anything about it.

    EDIT: I got what you mean by disks, but how the points can't be integers? Isn't rotating by 45 just doing (x+y,x-y)?

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится +1 Проголосовать: не нравится

      Every (integer, integer) point in our original $$$dx \times dy$$$ rectangle is mapped to an (integer, integer) point. But not every (integer, integer) point is in the image of this mapping. The inverse map is something like $$$(x', y') \mapsto \left(\frac{x' + y'}{2}, \frac{x' - y'}{2}\right) $$$, and it's clear that only points $$$(x', y')$$$ with $$$x' \cong y' \, (\mathrm{mod}\, 2)$$$ can be equal to $$$(x+y, x-y)$$$ for some integer point $$$(x, y)$$$.

      (I suppose the output format makes it unlikely for this to result in a wrong answer on this problem. But it is a potential 'gotcha' worth keeping in mind when using this technique on other problems.)

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +1 Проголосовать: не нравится

If you take all the points which are $$$<=d$$$ to a point x, y in the original grid, you will see that all reachable coordinates constitutes to a diamond. You "rotate" (more like translate the points into a new matrix that is "wider") this original matrix into 45 degrees (some coordinates in this transformed matrix will be zero, but that's okay).

Then just apply 2D-range sum with inclusion-exclusion on this transformed grid. $$$q<=20$$$ so an $$$O(n^2)$$$ approach will work.

Here is also a very helpful post that should get you some intuition. https://math.stackexchange.com/questions/732679/how-to-rotate-a-matrix-by-45-degrees