KAN's blog

By KAN, 6 years ago, translation, In English

931A - Friends Meeting

At first understand the fact that friend should make their moves one be one and the friend who initially was left should move to the right and other friend should move to the left. Let len = |a - b|. Then the first friend will make cntA = len / 2 moves, and the second friend — cntB = len - len / 2 moves. So the answer is the sum of two arithmetic progressions cntA·(cntA + 1) / 2 and cntB·(cntB + 1) / 2.

The given constrains allowed to calculate this sums in linear time — simply iterate from 1 to cntA for the first sum and from 1 to cntB to the second.

Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...

Thanks GreenGrape for translation!

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

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

Oh plz, where's the tutorial for div1 E?

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

Are there other problems similar to 944D — Game with String? It is a very interesting problem and I want to practice it more. Thanks

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

Is Div. 1 D solvable by some kind of modified convex hull algorithm?

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

    I think the method mentioned by the tutorial, is just some kind of modified convex hull algorithm.

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

Can someone explain Div.2C?

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

    Say you have only 0's, 1's and 2's in array.

    To preserve average you can either pick 0 and 2 and change both to 1 or pick two 1's and change one of them to 0 and other one to 2. Obviously, it makes no sense to take 0, 2 change it to two 1's and then change it back to 0 and 2 again, you won't gain anything.

    So now you pick one of the transformations 0,2 into 1,1 or 1,1 into 0,2. Pick one that gives you more numbers to change and perform transformations.

    Example:

    0 0 0 1 1 1 2 2 2 2 2

    Here, you can pick two 1's and get the array:

    0 0 0 0 1 2 2 2 2 2 2

    but that way you changed only 2 numbers. It's better to pick 0's and 2's, change them into 1's so you will get:

    1 1 1 1 1 1 1 1 1 2 2

    (notice how you have to left 2's at the end since you don't have more 0's to "balance" the change in terms of average value).

    For the next paragraph I will use this definition: cnt(x) — number of times x is present in array

    How many changes will you get from transforming 0's and 2's into 1's? min(cnt(0), cnt(2)) * 2

    How many changes will you get from transforming 1's into 0's and 2's? floor(cnt(1) / 2) * 2 (fancy way of saying cnt(1) if cnt(1) is even and cnt(1) — 1 if it's odd)

    Special cases:

    1) There are only 0's in array; there are only 0's and 1's in array — in those cases you cannot change anything (remember about the constraint that your minimal/maximal numbers have to be between minimal/maximal from original array, so you don't have any possibility for change without breaking this constraint or changing average). Obviously the same case for only 1's etc.

    2) There are 0's and 2's in array — that just reduces to transforming as many of them as you can into 1's.

    My solution:

    http://codeforces.com/contest/931/submission/35947027

    (it's not crystal clear, because of the part which actually changes the numbers in array, I guess I should have done it in different way)

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

      Thanks for your comment ! I too was following your approach and not the editorial one and was not able to debug until I came across your post. I missed the special cases !

      Here is my code and explanation

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

    Case1 : (xMax-xMin)<2

    • Because there is no way to change the numbers such that sum remains the same as before. So we can't change any number and ans will be 'n' followed by the initial given numbers in the next line.

    Case 2 : (xMax-xMin)==2

    • Suppose xMax = a+1, then xMin = a-1 and the other number whose presence is not guranteed will be 'a'. So there are two ways,

      Way 1 — You replace a+1 and a-1 with 2 a, because sum will remain same.

      Way 2 — You replace 2 a with a+1 and a-1, in this case also sum will remain same.

      The most optimal way to get answer will be to follow one way at all steps, because there is no sense of replacing 2 a with a+1 and a-1, and then again replacing a+1 and a-1 with a.

      Now you just have to check which way, either 1 or 2 is more optimal.

      Best of luck
»
6 years ago, # |
  Vote: I like it +44 Vote: I do not like it

I'm wondering why there's still no tuturials for the problem Coins Exhibition. I got stuck on this problem and need help.....

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

Problem A video solution: https://youtu.be/bFEmX3y8idE Problem B video solution: https://youtu.be/tzF_nagpR5A

Problem C and D coming

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

so where is the solution of div1.E?`

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

Is the formula in a 944B problem for finding the number of (min + 1)s is correct? // leftSum — minSum ?

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

"The analysis of the last problem will soon be added."

KAN Excuse me, sir?

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

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

Hello everyone.

For the problem 944 E, my code gets WA at test case 3.

This is my code- http://codeforces.com/contest/930/submission/38547479

I would like to know the error in my code.

For every index i, I'm taking the sum of longest non-decreasing subsequence ending at i, and the longest non-increasing subsequence starting at i, minus 1.

»
4 years ago, # |
  Vote: I like it +1 Vote: I do not like it

In 931D - Peculiar apple-tree Here's how the tree looks for the second sample test case

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

For 944C: many accepted Solutions from others Fail this Test Case

INput: 6 -2 2 2 0 0 -2

OUTput (from other's accepted code): 2 0 0 0 0 0 0

But the actual answer is : 0 -1 -1 -1 1 1 1