Блог пользователя jdurie

Автор jdurie, 3 недели назад, По-английски

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
Разбор задач Codeforces Round 941 (Div. 1)
Разбор задач Codeforces Round 941 (Div. 2)
  • Проголосовать: нравится
  • +246
  • Проголосовать: не нравится

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Super Fast Tutorial

»
3 недели назад, # |
  Проголосовать: нравится -8 Проголосовать: не нравится

Ultralightning fast editorial !!!

»
3 недели назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

bros made tutorial even before the contest

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Nice Super-fast Tutorial

»
3 недели назад, # |
  Проголосовать: нравится +11 Проголосовать: не нравится

Round #877 editorial?!

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Thank for so fast tutorial!

»
3 недели назад, # |
  Проголосовать: нравится +9 Проголосовать: не нравится

Good round. I enjoyed the problems.

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится -32 Проголосовать: не нравится

Very bad problem D!!!

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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.

  • »
    »
    3 недели назад, # ^ |
    Rev. 2   Проголосовать: нравится +7 Проголосовать: не нравится

    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.

    • »
      »
      »
      3 недели назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      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.

      • »
        »
        »
        »
        3 недели назад, # ^ |
        Rev. 2   Проголосовать: нравится -16 Проголосовать: не нравится

        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

»
3 недели назад, # |
Rev. 2   Проголосовать: нравится -27 Проголосовать: не нравится

Was my first comment and ppl demoted me

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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.

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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.

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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.

  • »
    »
    8 дней назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

    Div2-C dp solution Initially sort the numbers and remove the duplicates and then take difference with respect to previous element. Now start iterating from backward. We can say that when the the diff is not equal to 1 the first player always wins. but when it is equal to the 1 the player who wins i+1 will lose so dp state is dp[i]=1^dp[i+1] when 1 is diff value at an index, dp[i]=1 when the diff is equal to any value other than 1

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Awesome

»
3 недели назад, # |
  Проголосовать: нравится +40 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится +45 Проголосовать: не нравится

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?

»
3 недели назад, # |
  Проголосовать: нравится +56 Проголосовать: не нравится

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

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится +202 Проголосовать: не нравится

    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.

»
3 недели назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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?

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится +8 Проголосовать: не нравится

    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.

    • »
      »
      »
      3 недели назад, # ^ |
      Rev. 2   Проголосовать: нравится +8 Проголосовать: не нравится

      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.

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

How do I improve on these problems?

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится -15 Проголосовать: не нравится

    Nim games (Game theory) — gfg link

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится +4 Проголосовать: не нравится

    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

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

    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.

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

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

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    How to force player to play the only possible bad move

    • »
      »
      »
      3 недели назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      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!

»
3 недели назад, # |
  Проголосовать: нравится -27 Проголосовать: не нравится

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

»
3 недели назад, # |
Rev. 2   Проголосовать: нравится +3 Проголосовать: не нравится

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?

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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.

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится +2 Проголосовать: не нравится

    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
»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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.

»
3 недели назад, # |
Rev. 4   Проголосовать: нравится 0 Проголосовать: не нравится

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

if you add c++ I will be thankful!

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Could someone try to hack my solution for D?

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

  • »
    »
    3 недели назад, # ^ |
    Rev. 2   Проголосовать: нравится -8 Проголосовать: не нравится

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

    • »
      »
      »
      3 недели назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Man! orz

    • »
      »
      »
      3 недели назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      can you explain your code please

      • »
        »
        »
        »
        3 недели назад, # ^ |
        Rev. 5   Проголосовать: нравится 0 Проголосовать: не нравится

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

        • »
          »
          »
          »
          »
          3 недели назад, # ^ |
            Проголосовать: нравится +1 Проголосовать: не нравится

          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.

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится +12 Проголосовать: не нравится

Very fast editorial. Thanks!

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

"C" you the next time

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

    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

    • »
      »
      »
      3 недели назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      thanks man

    • »
      »
      »
      3 недели назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      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?).

»
3 недели назад, # |
  Проголосовать: нравится -38 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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.

»
3 недели назад, # |
  Проголосовать: нравится +26 Проголосовать: не нравится

minecraft is useable to create edtiorial picture of D1E.

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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.

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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?

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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.

»
3 недели назад, # |
  Проголосовать: нравится +6 Проголосовать: не нравится

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
  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    thats a damn cool solution bro

  • »
    »
    2 дня назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    could you explain the implementation ?

»
3 недели назад, # |
  Проголосовать: нравится +8 Проголосовать: не нравится

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!

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Hi!

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

Thanks in advance.

  • »
    »
    8 дней назад, # ^ |
    Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

    First observe that when the smallest pile contains 1 then the player is forced to choose 1. Thus it is a forcing move. Now remove all the duplicates in array and sort it in ascending order, as this does not affect the answer.

    Now consider the case when no consecutive numbers in the new array have a difference of 1 between them. You will see that when a person is forced to move (that is, the least pile is 1 in the person's chance), he/she will definitely lose.

    Now let's focus on the case when there are is some sequence of consecutive numbers starting from the least element.

    Case 1 -> they start from 1. For eg: 1 2 3 4 8 9 .... In this case Alice can convert this to 1 8 9 .... for Bob. Hence Alice wins. eg2: 1 2 3 8 9.... In this case Alice will only be able to convert this to 1 8 9... for herself. Hence she loses.

    Case 2 -> they do not start from 1. For eg: 2 3 4 5 8.. In this case Alice always wins because she can convert this situation to 1 2 3 6... for bob and the situation 2 3 4 8 to 1 2 3 7 for Bob.

    Hence we have covered all the cases. You can see my code for more clarity. You will have to try these examples yourself and convince yourself.

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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!

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone explain me question C?

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Nice Turorial

»
3 недели назад, # |
  Проголосовать: нравится +16 Проголосовать: не нравится

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

»
3 недели назад, # |
Rev. 3   Проголосовать: нравится +11 Проголосовать: не нравится

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?

  • »
    »
    3 недели назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Really good editorial especially for D

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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?

»
3 недели назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

.

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Which problem was the one from the yandex cup

»
3 недели назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

First problem was really good.