veschii_nevstrui's blog

By veschii_nevstrui, 6 years ago, translation, In English

Editorials of the first five problems in English will appear later.

Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
  • Vote: I like it
  • +53
  • Vote: I do not like it

| Write comment?
»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

why problems A to C are Russian ?

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

    because the problemsetters realized their mistakes in statements during the contest and now they are checking translation twice before publishing. be patient

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

How to prove that the order of the selected guests is not important in 907E - Party ?

Sorry, I think the Russian version analyzes this fact and so the English will. This comment has no point.

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

    We can think of it this way -- the problem can also be thought of this way.

    Given a graph G = (V, E), what's the fewest number of vertices we can mark such that for every a and b in the graph G, there is a path between a and b such that all vertices on this path (except for possibly a and b) are marked.

    This restatement makes it clear that the order of the guests is not important.

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

    Here is another way of thinking about it:

    Consider two guests a,b with a being friends with b and x, while b is friends with a and y.

    If a is processed first, then x and b will become friends, then when b is processed a and y, x and y will become friends.

    If b is processed first, then a and y will become friends, then when a is processed b and x, x and y will become friends.

    Either way the same endstate is reached.

    Thus we can switch any adjacent guests without changing the endstate, so we can order the processing of the guests in any way we want (sort of like bubble sort) without changing the endstate.

»
6 years ago, # |
  Vote: I like it +86 Vote: I do not like it

"There are a couple of corner cases:" Goes onto listing 9 of them.

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

    To be fair 6 and 7 can be combined by putting the segment with the even numbers first, but thats still 8 cases.

»
6 years ago, # |
  Vote: I like it +25 Vote: I do not like it

The images in 906E — Reverses are broken.

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

For 906E, what is the algorithm to split a string into a minimum number of palindromes (presumably in linear time, given the constraints)?

I've found a description of an algorithm for deciding whether a string can be written as a sequence of even palindromes (P*) here, but it doesn't seem like it could be easily extended to find the minimum number of such palindromes.

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

    I've also just come across this paper from 2014, which gives a O(N log N) algorithm for finding the minimum number of palindromes in a decomposition — that still sounds too slow for N = 5 × 105.

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

      O(N log N) too slow for N = 5 * 105?

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

      Actually, I use the algorithm described in this paper. I have no idea why it is more than 20 times slower than one using the palindromic tree. It is also very unbelievable to me that solution with n = 106 can finish in 62ms.

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

        To be honest, problem was changed few hours before the contest and I had not much time to prepare good testset. It is possible that bound on length of series isn't met in tests in such way that it lead the complexity to be in total.

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

    You can check out my old entry on this topic.

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

      Thanks, I'll give it a read when my brain is more awake — but it's still O(N log N) rather than linear. Is that fast enough for N = 5 × 105 (actually 106 since you interleave the two strings)?

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

        Why would it be too slow? I think is just fine for n = 106 and 2s TL. And this solution also tends to have really good constant..

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

          Also in practice the length of the serial links chain should be less than (I seriously don't know how to create a test for which to have a decent amount of chains with length approximately ).

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

          Frequently O(N log N) isn't fast enough for problems with n = 106, but as you say, the constant factor is low. It probably also helps that the I/O is very cheap.

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

Can anyone help me to understand why is it possible to use random approach in div2E?

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

Good tutorial! But in problem div.1 D, I wonder why  holds? Can anyone explain it a little bit? Thanks a lot!

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

      Well I don't consider these two problems similar... Maybe that's because I'm too stupid and know nothing about Maths. But I've carefully (maybe) read both the answer and the comments and failed to find a expression like this. So could anyone tell me how to get this by using the link above? Thanks a lot.

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

    It's proven a bit in editorial. Remainders have period φ(m / a) if x > k, but if we will just take remainder of the division by φ(m / a) or by φ(m), we can get value that is less than k. To be sure that the power will be at least k, we add some number that is not less than and is divisible by period length, and, obviously, φ(m) is such a number.

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

      Understood! Thanks a lot!

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

      Can you please tell me the proof why φ(x) is not less than ?

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

        For x = pk:
        pk - 1 ≥ k, and
        So

        And for an arbitrary X function φ is multiplicative and is additive, so inequality is obvious (except for x = 6)

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

          Thank you. That is a very nice proof.

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

I think in the tutorial to Problem 907A — Masha and Bears, the point 4-->(Masha likes last car, so it's size is not more than 2·V3) must be (Masha likes last car, so it's size is not more than 2·Vm) . @veschii_nevstrui

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

What am i doing wrong here for D?

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

Does anybody know any link for proof for statements made in 906D?

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

Why Probelm D has tag "chinese remainder theorem"?
I think it should be replace with “Euler Theorem”

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

can someone explain solution of div 2 C shockers problem in easy way??with use of set or without it also?? relpy fast pls

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

    Consider a boolean value(valid) which becomes true whenever the size of set is 1 Case 1: '. w' Remove all the characters of the word w from the set Case 2: '! w' if(valid) increment shock
    else retain all the elements in the set that are also in w Case 3: '? w' if(valid) increment shock else remove w from the set

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

For problem E, if we can reverse intersected substrings, is it an NPC problem or we can solve it in polynomial complexity?

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

Here's a randomized approach to 907D - Seating of Students that I think is easier to come up with than the editorial's & quite cleaner (although it is much less elegant):

  1. Instead of dealing with a 2d grid, we can flatten out the grid. That is, instead of having the grid $$$[[3,2,4,5],[1,6,7,8]]$$$, we could have the grid $$$[3,2,4,5,1,6,7,8]$$$. Then, we know that something at position $$$i$$$ is adjacent to something at position $$$j$$$ iff $$$|i - j| = 1$$$ and neither $$$i$$$ nor $$$j$$$ is at the end (i.e. neither of them are $$$-1$$$ modulo $$$m$$$) OR if $$$|i - j| = m$$$.

  2. We can incrementally build the grid. First, we take an arbitrary number and add it to a flattened grid. Say, we're building a $$$2 \times 4$$$ grid and our first number is $$$3$$$. Now, we can find out that $$$3$$$ can't be adjacent to adjacent to $$$1,4,5$$$ (using what we established in 1.) So once we chose our next arbitrary number, we have to make sure that the next number we chose can't be $$$1,4,5$$$. So if we do pick some of $$$1,4,5$$$, pick another number, and so forth, until you pick a valid number. Suppose we pick $$$6$$$. Now, we have a grid $$$[3,6]$$$. Pick another random number. If our new random number is either $$$1,4,5$$$ (since that's adjacent to $$$3$$$) or $$$4,5$$$ (since that's adjacent to $$$6$$$), then we re-pick until we get a valid number. In this way, we continue, until we have fully built our grid.

  3. Just to formalize what's in $$$2.$$$ Suppose our incrementally build array is called ans. To check if the last element of ans violates any adjacency conditions, we just need to check two things (a) ans.size() % m != 1 % m && ans[ans.size() - 1] is not adjacent to ans[ans.size() - 2]. The first part is to account for the fact that just because two things are adjacent in the flattened grid, doesn't mean they're adjacent in the real grid (they usually are, but not when it's near the edge of the grid. (b) ans[ans.size() - 1] is not adjacent to ans[ans.size() - m - 1]. This basically accounts for vertical adjacencies.

Anyways, for those interested, here's the code: 137380117. I'd be interested if someone could hack this, since I know randomized solutions are prone to hacking. Also interested if someone could say the probability of using the aforementioned procedure, but not getting a valid grid. It does happen on the 10th test case, so to remedy this, I just applied the procedure 1000 times and took any valid result. Not sure how often this happens, though.