Qingyu's blog

By Qingyu, history, 3 years ago, In English

Could not find an official announcement, let's discuss problems here.

  • Vote: I like it
  • +133
  • Vote: I do not like it

»
3 years ago, # |
Rev. 2   Vote: I like it +14 Vote: I do not like it

How to solve Div.2 M(Colors and Pearls) and P(Number Sequence)?

  • »
    »
    3 years ago, # ^ |
      Vote: I like it +49 Vote: I do not like it

    It looks like the problems for Div.2 were taken from some past ICPC Asia online contests...

    M: A brute force solution is to denote $$$f_n$$$ as the answer for $$$a_{1} \cdots a_n$$$, then $$$f_n = \min_{0 \leq i < n} (f_i+v^2(i,n))$$$. Note that $$$f_n \leq n$$$, so we only need to keep the states that satisfy $$$v(i,n)\leq \sqrt n$$$. Time complexity is $$$\Theta(n \sqrt n)$$$.

    Code

    N: For a pile of stones, we have $$$\mathcal G_n = \operatorname{mex}_{i+j<n} ( \mathcal G_i, \mathcal G_{i} \stackrel{*}{+} G_j )$$$, and you can proof $$$\mathcal G_n = *_n$$$ by induction. So the whole game is equivalent to the regular Nim game.

    Code

    O is just a simple breadth first search problem.

    P: We can make each $$$a_i\oplus b_i$$$ become $$$(111\cdots 1)_2$$$ by greedily pairing. This is obviously the optimal answer.

    Code
»
3 years ago, # |
  Vote: I like it +19 Vote: I do not like it

Thanks to the problemsetters, the problems were really nice (D in particular). How to solve C, G, J and K?

  • »
    »
    3 years ago, # ^ |
      Vote: I like it +65 Vote: I do not like it

    There's an editorial prepared by the problemsetters.

    • »
      »
      »
      3 years ago, # ^ |
      Rev. 2   Vote: I like it +10 Vote: I do not like it

      I had been looking for the editorial since the end of the contest, but couldn't seem to find it anywhere. Do you mind sharing how you found it? Most of the previous GP editorials were usually posted in the respective CF announcements, but this one doesn't seem to have any official announcement post.

      Thanks for sharing the editorial btw.

      • »
        »
        »
        »
        2 years ago, # ^ |
          Vote: I like it +26 Vote: I do not like it

        Well... In fact, the contest was used in Petrozavodsk Camp, and it was shared by the problemsetters during the camp.

  • »
    »
    3 years ago, # ^ |
      Vote: I like it -75 Vote: I do not like it

    baaki sab ban gaya bhai?

»
2 years ago, # |
  Vote: I like it +36 Vote: I do not like it

Thanks to problem F! I learned something new.

Here is a tricky case not in the judge tests (it's OK as I know it's not easy to create a strong cases):

1
10 9 100 3 -63 4

We have $$$E = \{ (3,1), (6,2), (9,3), (12,4), (15,5) \}$$$ and the answer should be 701423582.

My first attempt used quadtree-like DFS but I only checked the center of the ellipse and the boundary lattice points of the square to decide that they have any intersection. It is not correct for thin ellipses.

  • »
    »
    2 years ago, # ^ |
      Vote: I like it +38 Vote: I do not like it

    As the problem setter, thanks for caring about problem F!

»
2 years ago, # |
  Vote: I like it +30 Vote: I do not like it

The contest is available in GYM now :)