jdurie's blog

By jdurie, 13 days ago, In English

1966A - Card Exchange

Solution
Code

1966B - Rectangle Filling

Solution
Code

1965A - Everything Nim

Solution
Code

1965B - Missing Subsequence Sum

Solution
Code

1965C - Folding Strip

Solution
Code

1965D - Missing Subarray Sum

Solution
Code

1965E - Connected Cubes

Solution
Code

1965F - Conference

Solution
Code
  • Vote: I like it
  • +246
  • Vote: I do not like it

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Super Fast Tutorial

»
13 days ago, # |
  Vote: I like it -8 Vote: I do not like it

Ultralightning fast editorial !!!

»
13 days ago, # |
  Vote: I like it +1 Vote: I do not like it

Auto comment: topic has been updated by jdurie (previous revision, new revision, compare).

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

bros made tutorial even before the contest

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Nice Super-fast Tutorial

»
13 days ago, # |
  Vote: I like it +11 Vote: I do not like it

Round #877 editorial?!

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Thank for so fast tutorial!

»
13 days ago, # |
  Vote: I like it +9 Vote: I do not like it

Good round. I enjoyed the problems.

  • »
    »
    13 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    why is he getting downvoted I do not understand how this works bunch of crazy people

»
13 days ago, # |
  Vote: I like it -32 Vote: I do not like it

Very bad problem D!!!

  • »
    »
    13 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    This problem is constructed without providing any information. Most of the time, unless we find out that the lack of information doesn't affect something.But the Problem D in last contest which is Div.1 has difficulty of 2800,why are you angry about not doing it.

  • »
    »
    13 days ago, # ^ |
    Rev. 2   Vote: I like it +7 Vote: I do not like it

    Imo div2 D was actually pretty good. It was construction which is pretty meh but you could solve it by writing things down instead of just guessing so it wasn't so bad.

    • »
      »
      »
      12 days ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      The unsaid rule on codeforces is —

      Able to solve the problem — Wonderful problem,Wonderful contest,Wonderful authors, Thanks the authors in the comments section.

      Not able to solve the problem — Crap problem,crap contest,crap authors, comments mathforces adhocforces xyzforces in the comments section.

      • »
        »
        »
        »
        12 days ago, # ^ |
        Rev. 2   Vote: I like it -16 Vote: I do not like it

        you got me haha, I would've hated D if I hadn't solved it

        on an unrelated note, E was terrible and ad hoc

»
13 days ago, # |
Rev. 2   Vote: I like it -27 Vote: I do not like it

Was my first comment and ppl demoted me

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Can someone who solved Div2-C DP explain his approach please

  • »
    »
    13 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    hey no offense but why do it with DP when there is a pretty simple solution, it involves just counting the number of leading 1's in differences between consecutive elements of array sorted in ascending order.

  • »
    »
    13 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I didnt use the editorial approach but the idea is similar:

    • sort the array for better understanding
    • [Assumption 1] we solve it more list if there are piles with rocks > 1 you will win irrespective of the number of piles --> if there is one pile you pick up all rocks else you pick up n-1 forcing next person to pick 1 -- as that is the min acc. to the question.
    • obvious question --> how do I track the number of rocks per move when rocks are being removed from all piles??? --> you can sore the piles as delta difference for each pile and ignore repeating numbers --> now you can simply deduce which valid moves can be made.

    • after this calculation now you have a delta vector and a base condition that if there is just one pile Alice wins.

    • now treat this as a dp problem so while delta[i]>1 Alice wins --> first assumption if delta[i] == 1 winner 'Bob' now simply maintain who was wining at position n+1 while moving back and toggle it whenever you find 1;

    The editorial does this much simply by just checking if there is an increasing sequence but I couldnt really get to such a simple solution in the contest.

  • »
    »
    13 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    This is my solution from the contest using recursion with memoization.

    First I sort the array and remove duplicates for convenience. In the array dp I remember whether or not the player wins if it's his turn on a certain index. If there is a move that the current player can make such that the opposing player is in a losing position on the next index, then he is in a winning position on the current index. The current player is also in a winning position if he can make it so he is in a winning position on the next index.

    It is possible to do both moves if the difference between the current pile and the previous one is greater than 1, so we take both into account. This works because you can leave 1 rock in the current pile and then it is your turn on the next index, or you can take all the rocks and then it is the opponent's turn on the next index. If the difference between the current pile and the previous one is equal to 1 then is impossible to have the next move on the next index, so it is only the opponents.

    Look at the code as well, I think it is quite clean.

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Awesome

»
13 days ago, # |
  Vote: I like it +40 Vote: I do not like it

Can we just talk about how disgustingly simple the code for D2E — Folding Strip looks??

»
13 days ago, # |
  Vote: I like it +45 Vote: I do not like it

Why are bounds so tight in D1E? My solution only uses 348800, do you think it is a good practice to set bound to 350000 and also make your solution fail?

»
13 days ago, # |
  Vote: I like it +56 Vote: I do not like it

conqueror_of_tourist could you share how you managed to solve C in just 4 minutes? Did you see the problem before? It's hard to believe it could be that easy

  • »
    »
    13 days ago, # ^ |
      Vote: I like it +202 Vote: I do not like it

    If you view the problem as: "construct the smallest possible final strip such that you can create a 'walk' on the strip that corresponds to the original string", then you can see that any repeated 00 or 11 is 'suboptimal'. From there there's only one possible string you can create and you can simulate it.

    Of course, formally proving that the final string cannot contain any 00s or 11s is harder (and I eventually did it using the same solution as the editorial) however for my original submission I just used 'proof by AC' after it passed the samples.

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

      I see, that's really impressive! Thanks for the explanation :)

»
13 days ago, # |
  Vote: I like it +3 Vote: I do not like it

Awesome contest, almost got Div2 D, will get it next time! Thanks for the super fast tutorial.

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Great problem 1E! However, I am still unclear about the optimality proof for problem 1C. Is there a more intuitive or formal explanation for "composing" the valid foldings?

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

    I thought, if you have three consecutive characters you can "merge" them into 1 by doing the zig-zag fold. By doing this repeatedly you end up with a string with maximally 2 consecutive characters. Also it's never bad to do this because if there was an optimal folding which contained an overlap between more than 2 consecutive characters, both sides of the fold could be merged, resulting in a better solution. When the max number of consecutive characters is 2, I felt like it was pretty intuitive that you should always fold between the consecutive pairs because it always works and you do maximum folding.

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

      Oh, I have a simple idea: If a string t has consecutive same characters, it's always possible to apply the greedy folding algorithm again and obtain a strictly shorter string. Another folding is intuitively always possible, I think this is what "compose" means.

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Is there a category for the game problems "Alice" & "Bob" play optimally?

How do I improve on these problems?

  • »
    »
    13 days ago, # ^ |
      Vote: I like it -15 Vote: I do not like it

    Nim games (Game theory) — gfg link

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

      That problem litterally had nothing to do with nim.

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

        It would probably give him insight and confidence for these problems, when I read "nim" in an easy problem, I feel confident lol!
        I read about it through it's Wikipedia article and got some idea about strategy games.
        Also the idea of transitioning positions at will comes up in a lot of problems.

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

        I solved the problem pretty naively applying grundy nums 258426128.

  • »
    »
    13 days ago, # ^ |
      Vote: I like it +4 Vote: I do not like it

    You should try to find out when someone has control over the rest of the game the one who does wins the rest doesnt matter thats how i solved C

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

    The CF problems usually don't require any knowledge other than basic math and number theory, these are called game theory problems, when you're trying to play optimally as bad ur opponent plays is called Maximin strategy, the kind of game where the participants remove objects, etc is called nim games, which for CP, in general, there is no need other than just simple logic + math.

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

    Learn the “plus-minus” principle (retroanalysis of the game).

  • »
    »
    12 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    How to force player to play the only possible bad move

    • »
      »
      »
      12 days ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      If number of piles remaining is 1 pick all which means you won else pick exactly min-1 forcing the opponent just one option that is picking up 1. You will win as long as you are not forced to pick just one stone which leads to the increasing sequence logic. Hope this helps!

»
13 days ago, # |
  Vote: I like it -27 Vote: I do not like it

if I'm not mistaken, problem B can be solved in O(n+m) 258432155 the solution is quite long, but still

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

What should be the general thought process while approaching problems like Div2-D/ Div1-B?

I was trying to come up with some constructions on paper but every time I got stuck on the same idea, nothing special was popping out. What should be done when stuck like this?

  • »
    »
    13 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    To solve problems like Div2-D one must always try to see the problem using different perspectives especially when it is less intuitive. In other words, if one approach doesn't work then jump to other approaches. I tried to solve using greedy and dp but could not do it.

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

    it says: you want have every possible sum, how? One way is to have n ones. but something else, there is always a way to represent a number as the sum of powers of 2, so you think of log and power 2-based solution, now the main point is how to tweak those powers of 2 such that, there won't be a possible sum but others will be possible, there is a trap I fell into in the contest time:

    To make it work, How to remove/add some other integers based on k to the {1, 2, 4, 8, 16, ...} sequence.

    which may be possible but requires a lot of case forking on the set bits in k.

    there is also another important observation, $$$k = k/2 + k/4 + \cdots$$$

    Proof

    which with a little bit of tweaking with the math, you get that you can go from $$$(k-1)/2$$$ to $$$1$$$ and $$$k+1$$$ to $$$2*n$$$, using multiplying by 2. which will give you the solution, now there is left to prove that you can create anything, but k.
    which is the proof represented in the editorial

    I hope this was helpful to let you understand the intuition to how to get the solution.

    cheat code
»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

For Problem B, why are test cases 6 and 8 NO? For example, test case 8 "WBBWB", we can select 2nd cell B, all the way to last cell B and color all white to end with "WWWWW" or alternatively, select 1st cell W and 4th cell W and color all black.

Similarly, test case 6, we could select either the upper black square or the lower white square and color it to match the other one. BB BB WW WW

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

i'm pretty sure c is 1300 but i failed badly :(

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

For Div2 C, what should be the answer for testcase: [1, 3, 5]

According to me it should be "Bob", if I'm wrong please explain.

»
13 days ago, # |
Rev. 4   Vote: I like it 0 Vote: I do not like it

it's a really fast tutorial, but why most codes in python?

if you add c++ I will be thankful!

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Could someone try to hack my solution for D?

https://codeforces.com/contest/1966/submission/258465640

  • »
    »
    12 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    I failed...

    it is so correct.

    • »
      »
      »
      11 days ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Yeah, after covering [1, 4x + 1] and using all the bits except $$$2^i$$$ it is actually correct.

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

man if the contest was 5 more minutes I'd solved D :)

  • »
    »
    13 days ago, # ^ |
    Rev. 2   Vote: I like it -8 Vote: I do not like it

    I also got the idea in the last few minutes, but luckily solved 2 minutes before contest ends

    • »
      »
      »
      13 days ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      Man! orz

    • »
      »
      »
      13 days ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      can you explain your code please

      • »
        »
        »
        »
        13 days ago, # ^ |
        Rev. 5   Vote: I like it 0 Vote: I do not like it

        Sorry, I don't know how to explain my code in an intuitive way.

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

          Consider n = 6, k = 1.
          k-1 = 0, so you won't add anything.
          Then add k+1, i.e. 2.
          Now, next powers of 2 that are greater than k but <=n is 4.
          So, in total you have {2,4}. You can't get a subsequence of sum 3 from this.

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

I honestly can't see why my solution is failing. Shouldn't it give the same answer as solution in the editorial? 258438670

»
13 days ago, # |
  Vote: I like it +12 Vote: I do not like it

Very fast editorial. Thanks!

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

"C" you the next time

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Does problem 2D has any other more intuitive solution and can anybody explain it please

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

    I took 2k, 4k, 8k... until 2^i*k is less than n, I also took 3k; also another k+1; then to be able to make all the numbers smaller than k:

             k--;
             while(k!=0){
               add((k+1)/2);
                k/=2;
             }
    

    So we have numbers from 1 to k-1, if we add k+1 we have all from k+2 to 2k

    2k,4k,8k.. helps us to get any M*k, if M is odd we can take 3k add this to (M-3)*k

    If we use it, we can make all M*k+x, x<=k-1

    • »
      »
      »
      13 days ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      thanks man

    • »
      »
      »
      12 days ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      First time competitor here. Solved D2D post-round.

      I wasn't fully confident in the "descending from k" strat for the bottom part, went ascending from 1. Add powers of 2 starting from 1, stop when the next sum would be >= k, then add such a number to obtain a sum of k-1.

      The >k part I did exactly as you wrote (shouldn't it say 2^i*k greater than n?).

»
13 days ago, # |
  Vote: I like it -38 Vote: I do not like it

Thanks for the tasks. But actually disappointed with С. I don't like such tasks

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Another approach in 1B for obtaining subset sums in interval $$$[0;k)$$$. Let us say that by induction we can build a set of numbers such that its subset sums make an interval of $$$[0; \frac{k+1}{2})$$$. Now if we add $$$\frac{k}{2}$$$ to that set we can make an interval of $$$[0; k)$$$. So we just always add rounded down $$$\frac{k}{2}$$$ to the set and replace $$$k$$$ with rounded up $$$\frac{k}{2}$$$ until $$$k$$$ equals 1.

»
13 days ago, # |
  Vote: I like it +26 Vote: I do not like it

minecraft is useable to create edtiorial picture of D1E.

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

div 2d is not very intuitive to me but it seems that a lot of people have used different approaches, can someone tell me their thought process , i dont care about the proof but how people came to the conclusion is what i want to know.

»
13 days ago, # |
  Vote: I like it 0 Vote: I do not like it

For Div2D proof If v>k, we can take k+1 along with the binary representation of v−k−1

Can't understand how it is possible to take the binary representation of v-k-1?

  • »
    »
    13 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    if v>k there are two cases for v-k-1 Case 1: v-k-1 does not have ith digit on,in that case we already have all the power of 2 from 0 to 19 except i so v-k-1 can be easily obtained by combining those numbers; Case 2: v-k-1 have ith digit on, in that case lets remove the ith digit by subtracting (1<<i) from it ,hence instead of subtracting k+1 from v , we subtract k+1+(1<<i) , now v-k-1 has turned to case 1 because we have already removed ith digit.

»
12 days ago, # |
  Vote: I like it +6 Vote: I do not like it

I have a slightly different solution of 1965B - Missing Subsequence Sum.

If you know subset sum using Bitset, then it is way easier to visualize.

Idea
Approach
»
12 days ago, # |
  Vote: I like it +8 Vote: I do not like it

Felt kinda frustrated after proof-by-ACing C, but not anymore after reading the intended solution. It’s an extremely clever problem, thanks for the contest!

»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Hi!

I am not able to understand editorial for Problem: Everythin Nim. Can anyone explain me in simpler terms?

Thanks in advance.

»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it

I’m not one to judge a contest or problems. On average, they were good, but Div2D/Div1B was a bit lucky if you wrote things down or used brute force. It felt like guessing sometimes. Personally, I implemented a constructive/brute force solution using a bitset, similar to knapsack optimization.

Thanks for the contest!

»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Can anyone explain me question C?

»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it

1965D — Отсутствующая сумма подмассива? Hmm, probably you need to fix this (in English Version)

»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Nice Turorial

»
12 days ago, # |
  Vote: I like it +16 Vote: I do not like it

Div1 B has a different approach:

First, we construct a sequence $$$a$$$ containing $$$1,2,4,8\dots 2^l,v$$$. The sum of those integers in the sequence is equal to $$$k-1$$$. It can be proved that for every integer $$$i\in [1,k-1]$$$, there exists a subsequence of $$$a$$$ with a sum of $$$i$$$.

Next, consider finding the smallest integer that can't be presented as the sum of a subsequence of $$$a$$$. After finding such integer (Let it be $$$s$$$), append $$$s$$$ to the end of $$$a$$$. This can be done using knapsack dp.

This approach comfortably fits in the limits.

258500094

»
12 days ago, # |
Rev. 3   Vote: I like it +11 Vote: I do not like it

DIV 1 A: what will be the answer if test

1

6

1 3 4 6 9 15

from the tutorial: it is Bob but what if if we do like below:

After Alice : 2 3 5 8 14

After Bob: 1 3 6 12 ( as bob sees that winning state)

after alice: 2 5 11

after bob : 3 9 (as bob sees winning state)

after alice: 1 7 (as not winning state)

after bob: 6

after alice: []

so why not alice is winning here?

  • »
    »
    12 days ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    When the condition is "2 5 11" and it is Bob's turn, Bob can choose $$$k = 1$$$ and the stones will be "1 4 10". Now Alice must choose $$$k = 1$$$ and the stones will be "3 9". Then Bob can choose $$$k = 2$$$ and it will be "1 7". So Alice has to choose $$$k = 1$$$ and there will be only one pile of stones which has 6 stones. It means that Bob can remove all of them and win the game.

    I think the key of this problem is when the least number of stones is $$$1$$$, the player who should remove some stones does not have any choice but let $$$k = 1$$$. So Alice and Bob should jump out of this "rule" and force each other to be trapped in this "rule".

    Hope to help you.

    :D

»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Thanks for the amazing tutorial !!! It helped me for the questions I couldn't solve.

»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Really good editorial especially for D

»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it
»
12 days ago, # |
  Vote: I like it 0 Vote: I do not like it

I'm interested in problem missing subsequence sum. The proof is understandable but hard to come up with the solution during contest. Do you have any other similar problem like that?

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

.

»
11 days ago, # |
  Vote: I like it 0 Vote: I do not like it

The solution of CF1965E is so ingenious OMG. How can you grandmasters bethink of it??!

»
11 days ago, # |
  Vote: I like it 0 Vote: I do not like it

Which problem was the one from the yandex cup

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

First problem was really good.