When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

vovuh's blog

By vovuh, history, 6 years ago, translation, In English
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
  • +82
  • Vote: I do not like it

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

Hi! Just a small note about problem D.

In the editorial you said to subtract cntai  *  ai, but then you are adding cntai  *  ai again in the last sum, so you could just omit those two terms.

I know it adds the same, but I think is more natural for the understanding to just don't include them.

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

    what is cnt?

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

      cntx is the count of ocurrences of value x (at the left of i).

      When you process the i - th number, you then add 1 to cntai

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

Isn't the time complexity for E gonna be O(n * n * n * k) ?

n *n -> generating all the possible string 't'.

n *k -> checking it will all the strings s1, s2 ... sn

If this complexity is right, then won't the above solution give TLE ?

It would have been really nice, if the author would have attached a sample submission.

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

    Why it will be O(n3·k)? Authors solution generates O(n) strings t, for each string checking will be O(n·k) -> Complexity is O(n2·k). And my solution

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

There's a simple observation that can make the E solution a lot faster and less likely to get TLE. When you are determining the indices where si ≠ ti, if there are more than 4 such indices, then the answer is -1 (since s and t are too far from each other for there to exist a "base string"). Now you'll only have O(1) candidates for the "base string", and the rest of the approach is quite fast.

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

    Oh my god, i use it in my solution but forgot to write it in editorial. Sorry!

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

Another solution for F:

Use DP state (i, mask) to mean the minimum cost to make everything before column i dots, and the columns i through i + 3 having asterisks in the positions indicated by mask (which ranges from 0 to 216 - 1). The transitions are to clear a square in the mask (1x1, 2x2, 3x3, or 4x4), or, if the bottom 4 bits of the mask are empty, to shift to column i + 1.

There are 1 + 4 + 9 + 16 = 30 transitions of the first type, and 0 or 1 transitions of the second type, so the total time is O(n·216·31). Implemented in a top-down (recursive) fashion, this doesn't run in time (submission: 33204536). The worst case is with a 4x1000 matrix, all asterisks, which takes about 5 minutes on my machine.

To speed it up, we note that if the bottom 4 bits are empty, the shifting transition is always best: we don't need to check all the square-clearing options. Furthermore, unless we are at i = n - 4, it is always best to clear squares that border the left edge of the square under consideration. This reduces the possible transitions by about a factor of 2, but it also drastically reduces the number of states visited: in the maximum case described above, our recursion only visits 106371 states, and the submission (33204643) passes in 61ms.

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

    You need only 3 columns for DP.

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

    Why are there only those 30 transitions? What if the last 4x4 square looks like this:

    *...
    *...
    *...
    *...
    

    Which transition would be used to use 4 1x1 stamps to clear the leftmost asterisks?

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

Can someone explain the logic behind the solution of problem D please?

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

D can also be solved using a Fenwick tree. Go through the sequence of numbers from least to greatest, updating the tree from 0 to 1 as you go. For each new value, update all previous values more than 1 less than it in the Fenwick tree, then add val*query(0, ind-1) — val*query(ind+1, MAX_N-1) to the final answer. Then do the same thing again, but in reverse sorted order.

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

    I cannot understand your solution my bad,can you explain using an example...

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

      I will do the sample case:

      5
      1 2 3 1 3
      

      The initial BIT is like this: 0 0 0 0 0

      We go through the elements in sorted order. So we start at 1, which are at indices 0 and 3. Before we look at 1, we have to update the BIT with all elements that are less than 1-1 = 0. There are none of these, so the BIT is still at 0 0 0 0 0. For the 1 at position 0, we add 1*(0) — 1*(0) to the final answer. For the one at 3, we also add 0 to the final answer.

      Now we go to 2. The only 2 is at index 1. Before adding the 2, we update the BIT with all elements less than 1, but there are none of these, so we don't update it. As before, add 0 to final answer.

      Now we go to 3. They are at 2 and 4. First, update all elements less than 3-1=2. There are 2 of these: the 1 at index 0 and the 1 at index 3. So now our BIT looks like this: 1 0 0 1 0 The 3's are here:

      1 0 0 1 0
          ^   ^
      

      For the first 3, we query for the sum of the first 2 elements of the BIT, which is 1. Then we query sum of last 2 elements, which is 1. So we add 3*(1) — 3*(1) to the final answer.

      For the second 3, we query for the sum of the first 4 elements, which is 2. Then we query sum of last 0 elements, which is 0. So we add 3*(2) — 3*(0) to the final answer. Currently, the final answer is 6.

      Now we go through and do the same thing in reverse sorted order. First, reset the BIT to all 0s.

      For the 3s, we update all positions of elements greater than 3+1=4. There are none of these, so again add 0 to final answer.

      For the 2s, update all positions of elements greater than 2+1=3. None, so add 0.

      Now, the 1s. Update all positions of elements greater than 1+1=2. So our BIT becomes 0 0 1 0 1. The 1s are here:

      0 0 1 0 1
      ^     ^
      

      For the first 1, add 1*(0) — 1*(2) to final answer. For the second 1, add 1*(1) — 1*(1) to final answer.

      Final answer: 4

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

    I too taught of Fenwick tree but as array values are in order of 10^9. how to handle that much memory. Or i m doing something wrong here ?

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

      The Fenwick tree only has order of 10^5 elements. You just have to process the elements in the correct order, so their max size doesn't really matter.

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

The answer for problem C is just the mode (the highest frequency among all numbers) of the array.

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

Can someone explain author's approach to the problem F in more detail? What is the bit mask representing, and how is he using it to form dp states?

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

very nice solution for problem G, thinking the min-cut way is much easier :-)

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

In problem D test 29's correct answer is -9999999990000000000. Isn't it exceeding 10^18 by it's absolute value?

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

903F - Clear The Matrix What does mask mean? I am visualizing it like this.
~~~~~ mask = 1

for i = 3 and j = 4

|*|.|.|

|.|.|.|

|.|.|.|

|.|.|.|

mask = 3

for i = 3 and j = 4

|*|*|.|

|.|.|.|

|.|.|.|

|.|.|.|

~~~~~
Is this correct.

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

    Its better to visualize it like

    1 5 9
    2 6 10
    3 7 11
    4 8 12
    

    for j = 4

    . 4 8  12
    1 5 9  .
    2 6 10 .
    3 7 11 .
    

    for j = 1

    Then doing mask = mask >> 1 shifts it one cell further

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

      I still don't get it. :-(

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

      Can you give recurrence relations between state domains in 903F - Clear The Matrix.
      Thanks in advance.

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

        I can share my solution. I believe that it's pretty easy to understand with editorial given.

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

          can you please understand the transitions i didn't get it from editorial. please help !

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

In problem D how to calculate that the absolute value of the answer will be up to 10^19?

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

    please correct me if i'm wrong

    let's make y-x value maximum so y must equal to 10^9 and x equal to 1

    let's approximate maximum value of y-x to be 10^9

    now let's make y-x occurs alot

    consider this case : (n=4)

    1 , 10^9 , 10^9 , 10^9

    so y-x happens 3 times

    now let's make n=2*10^5

    so let's divide the array into two equal parts ones and (10^9) part

    the array will be like this 1 1 1 1 1..... 10^9 10^9 10^9..

    so for every one y-x happens 10^5 times

    and we have 10^5 ones

    so our value will be (10^5)*(10^5)*(10^9) = 10^19

    sorry for poor english

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

Can someone explain problem D please?

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

    In my opinion,
    there are three major difficulties which could be encountered in Problem D:

    • How to solve a similar problem if d(x, y) would be unconditional (just y - x).
    • How to transform a solution of the above problem into a solution for this specific sort of d(x, y).
    • What to do with large numbers (they do not fit into a 64-bit integer).

    The below is my attempt to explain the first two of the difficulties.
    I do not know how to resolve the third one fast and bugless in C++ (I implemented a solution in practice mode but it takes too much time to be practical, i.e. to write it in a contest from scratch).

    Thus,

    Solving a simpler problem...
    Fixing the result of the simpler problem...
»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Can someone explain the solution to F?

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

For problem, A is this logic is correct or not

if(x%7==0 || x%3==0) _ print("YES");_ else if((x%7)%3 == 0) _ print("YES")_ else _ print("NO")_

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

    It's not correct, because when you did (x%7) you divided x by 7, so you lost values that may be divisible by 3. For example, and as your logic says: x=19 -> (x%7)%3=2!=0 -> the answer is NO (here you made two meals by 7 and there was 5 remained), but we can make one meal by 7, and four meals by 3, so we obtain 1*7 + 4*3 = 19, and the answer for this sample is YES.

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

    By the way, for any x > 11 the right answer is YES.

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

      Wow, it's very good that by at least four 3's, it's guaranteed that we can make one 7 by adding one, and two 7's by adding two, and by adding 3 we come up with a number that's divisible by 3, and so on :D, Thanks.

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

        You are welcome :)
        I'm not sure I understood your logic, unfortunately.

        I proved that property after trying to greedily construct all possible YES-numbers, in ascending order. I ended up with the following:

        • if x = a·3 + b·7, then x + 3 = (a + 1)·3 + b·7

        This means that, starting with three consequtive YES-numbers, all larger numbers are also YES-numbers.

        The smallest three consequtive YES-numbers are:

        • 12 = 4·3 + 0·7
        • 13 = 2·3 + 1·7
        • 14 = 0·3 + 2·7

        P.S. I had not noticed this property myself. I found a solution which is based on this idea and wanted to check if I can hack it :)

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

          Firstly, I'm sorry for these untidy comments... ( UPD : now this is tidy :) ).

          Another "Wow!" for this prove which I was looking forward one like it.

          My logic was that the number 12 is the first number that contains at least four 3's 3 + 3 + 3 + 3.

          Then the next number will contain 3 + 3 + 3 + 3 + 1 and this additional 1 can be merged with two 3's obtaining 3 + 3 + 7 which gives us the answer YES..

          And the next number will make another single 1 which also can be merged with the remained two 3's obtaining 7+7 -> YES..

          The next number is divisible by 3 -> YES, and so on.

          It's guaranteed that this is true for all the next numbers because in all these numbers we have that four 3's which we need in merging, and after merging we will have some 7's and some 3's (may be 0).

          P.S. I had not have this prove before I read your comment, Thanks.

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

            Now I understood. Thanks for explaining!

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

In problem E, rather than swapping si,diffpos with any other character of si , Can't I swap it with any other character at a position in array pos?

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

Can anyone explain why we need previous 12 cells in problem F? Why not any other number?? Thanks in advance.

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

Can somebody help me in question E. My solution getting TLE , i have use hash like abc---> a*p^2 + b*p+ c , and try to find the intersection of all swap of all string

my solution link

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

I have another approach to problem E, which differs from that described in the editorial. I haven't proved it's correctness, and I'm not even sure if it's correct, but it passes the given 70 tests and I stress-tested it against a few other tests. It would be interesting to see if someone could hack it.

It stems from the brute force solution: just recursively iterate over all possible strings and check if each string is valid. The issue with the recursive solution (the reason why it's slow) is that sometimes, we know that a prefix is invalid. It's invalid if it's not a prefix of a permutation of the original input (i.e. it contains more occurrences of a given character than it should). It's also invalid if it differs by more than 2 from other strings in the input. Just using these 2 ideas to prune generates a pretty good brute force when $$$k$$$ is large, since it's highly unlikely that a given string satisfies those two criteria.

So now the issue is dealing with small $$$k$$$ ($$$k \le 10$$$). We can store what the interesting points are (points at which a swap may have occured) and try randomly swapping interesting points.

It turns out, to my surprise, that this actually works.

TL;DR Please hack me :).

143162377

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

certainly Education Forces have weird taste of fun