suxrib's blog

By suxrib, history, 8 years ago, In Russian

Let us discuss div2+div1 today's Opencup problems here

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

»
8 years ago, # |
  Vote: I like it +38 Vote: I do not like it

How to solve div2 D Nice set of Points?

»
8 years ago, # |
  Vote: I like it +27 Vote: I do not like it

How to solve B and J?

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

    B — Let's say that 2 points are connected if they can be paired. it's possible to pair 2*N points iff each component of such graph has even size (I don't know proof). To make number of edges linear connect each point only with 2 closest points in each direction (not 1 point because this point can be deleted). Now we need to check if sizes of all components are even if we delete a vertex. This can found with similar approach to finding articulation vertices.

    Code

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

      The proof is obvious if you know Tutte theorem. Let's assume the graph is connected and |V| is even. If we delete vertex v, there will be at most 2 connected components(one will contain vertices on the same vertical as v, other will contain vertices on the same horizontal). Therefore, if we delete k vertices, there will be at most k + 1 connected components. If for some subset of size k after deleting it there will be k + 1 odd components, then which is odd. Contradiction.

    • »
      »
      »
      7 years ago, # ^ |
      Rev. 2   Vote: I like it 0 Vote: I do not like it

      sorry, this not, the sol to the problem J

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

    J — I have some shitty dp, but some team solved it very fast so I believe that there exists neater solution.

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

      A simpler approach: DP[position in array][mask of used positions in permutation][remainder]; code.

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

        Nice! On the other hand my solution is polynomial :)

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

        Can you please explain the idea behind it?

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

          Let's process positions one by one. We'll keep track of current position, mask of entries in the final permutations which we already picked and remainder of current distance. The trick is — in case you know that mask, you can calculate how many times you'll pass through the next segment (and therefore how much does it add to the total length of the route) — for each two adjacent positions in your route you can check the mask and see if they are on the same side of the segment or not.

    • »
      »
      »
      8 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Can you please explain your parameters?

    • »
      »
      »
      7 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Can you please explain your sol?

»
8 years ago, # |
  Vote: I like it +18 Vote: I do not like it

And G?

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

    My code. It generates correct board for every prime k with size k2 × k2 and k3 zeros.

»
8 years ago, # |
  Vote: I like it +13 Vote: I do not like it

How to solve H?

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

    The solution is based on Sprague–Grundy theory. Let's solve the problem where we have only one bean:

    We are going to calculate the grundy function for each i. According to the theory:

    Gi = mex(Gi - Ci, Gi - Ci + 1, ..., Gi - 1), where mex is the minimum non-negative integer, that doesn't appear in the set (e.x. mex(0, 1, 4) = 2 ).

    To find it on O(logn) I used a segment-tree, where I kept for each number in range [0, 105] it's last appearance in G. Having this information, we run a simple recursion to find the minimum number, which last time appeared earlier, than i - Ci. It is our Gi, now we update the tree.

    After calculating G, let's calculate the answer. According to the theory, Ggame is the xor-sum of all Gi, such that Ai is odd. The answer is "Second" if Ggame is equal to zero, otherwise "First".

    code

»
8 years ago, # |
  Vote: I like it 0 Vote: I do not like it

How to solve E and F?

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

    E
    You need 3 facts (I'll list them without proof). First, our trajectory has period g = gcd(h, w). Second, if the trajectory period has u up moves (along h side) and r right moves, then gcd(u, h) = gcd(r, w) = 1. Third, any trajectory satisfying these constraints is good, so the answer is , where gcd(u, h) = gcd(g - u, w) = 1.

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

    F
    Note that every empty cell that's neither start nor finish has exactly one vertical and one horizontal connection. This means that for every line (row or column) we can go from one side and greedily pair empty cells with connections (this implies the number of empty cells is even). This works for all lines that contain no end points and gives a hint where finish can be located: if there's 0 lines with odd number of empty cells, it is in the same line as start, if there are 2 — start must lie in one of them and finish in the other, and if it's more than 2 — the answer is NO. We have O(N) candidates for finish, we just check all of them and construct the path in O(N2) for each. I heard this solution can even be improved to O(N2) if we build DSU over the paths once for every line where we check the finish position.

»
8 years ago, # |
  Vote: I like it +5 Vote: I do not like it

Are Opencup problems open to the public?