Изменения рейтингов за последние раунды временно удалены. Скоро они будут возвращены. ×

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

Автор IgorI, история, 3 года назад, перевод, По-русски

Спасибо за участие в раунде! Я надеюсь, что вам понравились задачи.

1474A - Загадка из будущего

Hint 1
Hint 2
Editorial
Solution

1474B - Различные делители

Hint 1
Hint 2
Hint 3
Editorial
Solution

1474C - Уничтожение массива

Hint 1
Hint 2
Hint 3
Hint 4
Editorial

1474D - Уборка

Hint 1
Hint 2
Hint 3
Hint 4
Editorial
Solution

1474E - Что это?

Hint 1
Hint 2
Hint 3
Hint 4
Editorial
Solution

1474F - 1 2 3 4 ...

Bonus
Editorial
Solution

Удачи в будущих контестах!

Разбор задач Codeforces Round 696 (Div. 2)
  • Проголосовать: нравится
  • +307
  • Проголосовать: не нравится

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

thanks for fast editorial

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

Hope I'll become Candidate master today without new year's magic ;)

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

Man!!! That was really quick! Nice hints and clear insight.

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

If negative numbers allowed in problem C, Is this problem still can be solved ?

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

    Sorry I underestimated the fact that, the X will become variable in case of negatives. Ex : 6 4 1 -2 Here we can make X = 5, {4, 1} -> {6, — 2}

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

Thanks!

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

Good contest, despite O(N^2LogN) not passing in java for C

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

I am not understanding why i am getting tle verdict in third problem. I think i am doing it in O(n2⋅logn) but i am wrong maybe . Here is a link to my submission https://codeforces.com/contest/1474/submission/104839937 I would be extremely glad if someone can point out the error.

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

There doesn't seem to be any hacking round, so When is the rating gonna be updated?

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

Very well written tutorial. While solving C using multiset; one needs to remember that erasing an element by value will delete all elements having same value. And it costs you time to debug it and to read online documents.

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

Problem 1474D - Cleaning. I supposed that, if we don't use the ability, the answer is "yes" if and only if the sum of numbers on odd positions is equal to the sum of numbers on even positions, and every number is not greater than the sum of it's neighbors. But the solution fails: 104836378. Is my idea wrong, or is it because of some mistake in the implementation? I wasn't able to find any couterexample(and the test on which it fails is unvisible) nor any formal proof. Thanks in advance.

UPD: I have found the counterexample. Very weird my solution passed all those millions of tests.

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

    I used the same idea and it worked. You can check my submission.

    UPD: the counterexample isn't complex but I just couldn't find one during the contest.

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

      Thank you, it turns out I used bool instead of int for the prefix sums array, that was the mistake.

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

      Can you please explain how to choose x for C problem ? i'm stuck at that.

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

        From the problem statement it can be observed that x will decrease with each operation. So it is necessary for us to take maximum element as one of the constituent of x.

        why

        So we must combine each of the element with the maximum to get a new potential value of x. and check if it is feasible to go with that value of x.

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

I don't really understand the explanation for D. Can somebody explain/give an example for how p_i and s_i are calculated, and what the check mentioned in the last paragraph is? A link to a solution that implements this method would be just as good as well.

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

    I think you should first focus on improving your problem solving skills rather than wasting time in making youtube videos.

    p.s. NO intention of offending you but just an advice, rest on you .

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

My Java Solution for Problem C: 104839108
Isn't it O(n^2logn) ? I used to HashMap.

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

    Can you help me with my Java submission for C. Its giving TLE even though its O(n^2 logn) 104873241

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

      No, it's $$$O(n^3)$$$: for each starting $$$x$$$ ($$$2n$$$ variants) you $$$O(n)$$$ times call $$$contains()$$$ and $$$remove()$$$ from $$$ArrayList$$$ $$$l$$$, where at least one call of $$$remove()$$$ is removing the first element and works in $$$O(n)$$$.

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

in 1 sec per test: will our code of O(n^2) passes? if 1<=t<=1000 and 1<=n<=1000 because i read only 10^7 operations will pass... but here (n^2)*t will be around 10^9 right.. any clarification on this will be appreciated...

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

    It is guaranteed that the total sum of n over all test cases doesn't exceed 1000.
    This means: Whether how many test cases there are, n will never exceed 1000. You can remove 't' from your complexity here. Suppose t=1000. Then the value of n in each test case will be 1 only.

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

    "It is guaranteed that the total sum of n over all test cases doesn't exceed 1000."

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

This editorial is awesome as it totally focuses on concepts instead of spoon-feeding.

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

It's hard for me to understand why there is only one way to make all numbers equal to 0 in problem D. I don't get how proof works. Can someone explain ?

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

My soln of F is similar to the model soln mentioned in the editorial of 1295F - Good Contest.

Firstly in linear time, we can compute the length of LIS.
Let's fix a minimum element of LIS say X and length by L. Then we know that LIS is $$$X,X+1,..,X+L-1$$$. We will loop over all possible Xs.

dp[0][X-1]=1.
dp[i][j] is no of LIS starting at X and end at j using first $$$d_1,d_2,...,d_i$$$
This soln works in $$$O(n*(max(Pi)-min(Pi))$$$.
One can refer to this Bruteforce soln for more details about DP states.

Soln in one line — dp[i] is a piecewise polynomial function of degree atmax i in j.

Let's denote B be the set of all values in prefix sum of the given array in increasing order.
Important thing to note here is there exsists a polynomial P(x) of degree less than or equal to i such $$$P(B_l)=dp[i][B_l],P(B_l+1)=dp[i][B_l+1],...,P(B_{l+1}-1)=dp[i][B_{l+1}-1]$$$.
So instead of maintaining $$$O(B_{l+1}-Bl)$$$ states we can just maintain i+1 values and interpolate this polynomial whenever required.

Also, X belongs to B.
For each polynomial, we maintain O(n) values. Interpolation takes O(n). There are $$$O(n*n)$$$ polynomials for each $$$X$$$.
This soln works in $$$O(n^4)$$$.
AC Submission

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

I just added solutions in C++ to all problems.

There are some problems with spoilers now, so hints are published without any spoilers (actually it is the reason editorial wasn't pusblished just after the contest).

Anyway, thanks again for taking part in my contest and discussing its problems.

UPD: Now hints should be ok

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

Hey, can someone explain why am I getting time limit exceed for problem C : https://codeforces.com/contest/1474/submission/104834766

I used a O(n^2log(n)) solution, normally it should pass..

I used an unerdored map in the last seconds and got accepted in 982 ms.

Thanks in advance

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

Can someone tell me Time complexity of my code , I think it is O(N^2) approx. https://codeforces.com/contest/1474/submission/104834839

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

Here are my video solutions of this round for A-E, which I'm really glad I didn't do a screencast for

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

Can someone explain why we don't need to check the case where $$$a = p^3$$$ in problem B ?

In other words why can't a solution be of the form: $$$1$$$ $$$p$$$ $$$p^2$$$ $$$p^3$$$ ?

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

    $$$p_1.p_2 < p_1^3$$$ where $$$p_1 > d, p_2 \geq p_1 + d.$$$ Since, we're asked to find the minimum integer $$$x$$$. Maybe, It's also because prime numbers are dense at the start.

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

      what if $$$p_1^2 < p_2$$$ ? or that just never happens due to the limits of this problem ?

      $$$p_1^2$$$ being greater or equal than $$$p_1 + d$$$

      $$$p_2$$$ being next prime greater or equal than $$$p_1 + d$$$

      any formal or convincing proof that this never happens?

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

        Bertrand's postulate, proven in 1852, states that there is always a prime number between k and 2k, so in particular $$$p_{n+1} < 2p_n$$$.

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

        As pointed in above comments , we can prove using Bertrand Postulate .

        More formally suppose you say answer is $$$p^3$$$ and thus it's factors are $$$1,p,p^2,p^3$$$ . Difference between each of them should be greater than $$$d$$$. Thus $$$p_1≤p$$$ . Using Bertrand Postulate we can say that there must exist prime $$$p_2$$$ such that $$$p<p_2<p^2$$$ , since smallest prime is 2. Hence $$$p_1*p_2$$$ is better answer.

        You asked very good question , I never thought of it during the contest.

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

          No, I don't think $$$p_1^2 < p_2$$$ since $$$2p_1 < p_1^2, \forall p > 2$$$.

          We can further postulate that, there also exist a prime, $$$p_x$$$ that is less than $$$4p_n$$$ with Bertrand's Postulate since, $$$p_{n + 1}$$$ may not be greater than or equal to $$$p_n + d$$$.

          Thus, We can prove that $$$p_n . p_x < p_n^3$$$.

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

            I wrote $$$p < p_2$$$ .It's called proof by contradiction. So i assumed that $$$p^3$$$ is the best answer but then we arrived at contradiction that a better answer would exist in that case.

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

              Using Bertrand Postulate we can say that there must exist prime $$$p_2$$$ such that $$$p^2<p_2<p^3$$$.

              I don't know if this is called proof by contradiction. It'd be correct if you change the order as $$$p_2 < p^2 < p^3$$$ according to Bertrand Postulate.

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

                In Bertrand Postulate , take $$$n=p$$$ , also $$$p≥2$$$ , thus there must exist prime $$$p_2$$$ such that $$$n<p_2<2n≤p^2$$$. So how my argument wrong ?

                Thus we have better answer $$$p_1*p_2$$$ but that's contradiction since best answer was $$$p^3$$$ . Hence our assumption that $$$p^3$$$ will be best answer was wrong . Thus answer must be of form $$$p_1*p_2$$$.

                proof by contradiction . In this to disprove something we first assume it's correct and then arrive at some contradiction . Here i assumed $$$p^3$$$ is correct and then we arrived at contradiction .

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

                  In Bertrand Postulate , take $$$n=p^2$$$ , also $$$p\geq2$$$ , thus there must exist prime $$$p_2$$$ such that $$$n<p_2<2n≤p^3$$$.

                  I get what you're saying. But $$$p^2$$$ has to be a prime number in order to use Bertrand's postulate.

                  proof by contradiction. In this to disprove something we first assume it's correct and then arrive at some contradiction . Here i assumed $$$p^3$$$ is correct and then we arrived at contradiction.

                  Thank You, I didn't read about this before.

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

                  It can be any integer .

                  I get what you're saying. But $$$p^2$$$ has to be a prime number in order to use Bertrand's postulate

                  read here :

                  A less restrictive formulation is: for every $$$n>1$$$ there is always at least one prime p such that $$$n<p<2*n$$$
        • »
          »
          »
          »
          »
          3 года назад, # ^ |
          Rev. 7   Проголосовать: нравится +3 Проголосовать: не нравится

          When you said p ^ 2 < p2 < p ^ 3, didnt you actually prove p1 * p2 is a worse answer? Because suppose p1 = p so then p1 * p2 > p * p ^ 2, because p2 > p ^ 2. So optimal would be p ^ 3.

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

            Thanks for pointing it out , I have corrected it now. Actually i needed to write $$$p<p_2<p^2$$$ and thus $$$p_1*p_2$$$ is smaller.

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

This "Hint by Hint" format is nice. Keep it up.

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

I would be very thankful if someone can find the bug in my code https://codeforces.com/contest/1474/submission/104847038 I'm unable to figure it out

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

Problem B can be solved with help of regexes, as N is not big. Try it yourself.

Spoiler 1
Spoiler 2
Spoiler 3

Solution 104855574

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

The time constraints for C are absolutely atrocious, I tried 3 different n^2 log n implementation and I wasn't able to make any of them pass

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

If anyone is stuck at C https://youtu.be/Y_53vVG7RMw

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

I still have a question about prob D, why we just talk about the swap between 'a[i]' & 'a[i+1]' ?

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

    Before the start of cleaning, you can select two neighboring piles and swap them.

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

My solution is getting WA on test 2 and I don't understand why. Can someone please give me a test case where this fails?

https://codeforces.com/contest/1474/submission/104864709

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

I got a few doubts in n* +max(a) solution of c

if (cnt[a[j]] < 0 || cnt[x - a[j]] < 0)
            {
                cnt[a[j]] = 0;
                cnt[x - a[j]] = 0;
                break;
            }

when the cnt of a[j] will be less than zero ? as for in while loop we check that cnt[a[j]]>0 also if i comment it out, then why it gives wrong answer since in reset(a) after ops, we are anyway setting cnt[a[i]] to zero ?

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

brilliant idea for problem D

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

Is +460 in first codeforces contest good? What is the metric for good and bad for codeforces contests?

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

This format of multiple hints and then answering them is great

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

Problem D, Now we have 0 stones in the 1-st pile and a2−a1 stones in the 2-nd pile. I understood this.

We can apply the idea above and get that we should have a2−a1 stones in the 3-rd pile. How do we get a2-a1 for 3-rd pile?

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

Why I'm getting RE in Case 6 in problem C, Help me (O_O) :

104870245

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

    upper limit for a[i] is 10^6 but you have made the size of array f as 10^5 so f[a[i]]++ will end up with run time error(as 10^6>10^5 so its array size issue).

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

What's wrong with my D? I'm confused. 104868453

I'm not good at English..Emm...

If I don't use the superability,it will be ``` b[1]=a[1] b[2]=a[2]-a[1] b[3]=a[3]-a[2]+a[1] ... b[n]=a[n]-a[n-1]+a[n-2]-...

For odd numbers : b[n]=a[n]-a[n-1]+a[n-2]-...-a[2]+a[1] For even numbers : b[n]=a[n]-a[n-1]+a[n-2]-...+a[2]-a[1]

if we swap(a[pos],a[pos]+1]) b[pos] will -a[pos]+a[pos+1]

for i>=pos+1 i%2=(pos+1)%2: b[i] will -2*a[pos+1]+2*a[pos] i%2=(pos+2)%2: b[i] will +2*a[pos+1]-2*a[pos]

I want b[n]->0 and all i in [1,n] b[i]>=0 I calculate suffix(suf) and prefix(pre) ``` Oh,I can't make it any clearer,I'm poor in English...

upd: Accepted

  • »
    »
    3 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится
    If I don't use the superability,it will be
    b[1]=a[1]
    b[2]=a[2]-a[1]
    b[3]=a[3]-a[2]+a[1]
    ...
    b[n]=a[n]-a[n-1]+a[n-2]-...
     
    
    For odd numbers  : b[n]=a[n]-a[n-1]+a[n-2]-...-a[2]+a[1]
    For even numbers : b[n]=a[n]-a[n-1]+a[n-2]-...+a[2]-a[1]
     
    if we swap(a[pos],a[pos]+1])
    b[pos] will -a[pos]+a[pos+1]
    
    for i>=pos+1
    i%2=(pos+1)%2: b[i] will -2*a[pos+1]+2*a[pos]
    i%2=(pos+2)%2: b[i] will +2*a[pos+1]-2*a[pos]
     
    I want b[n]->0 and all i in [1,n] b[i]>=0 
    I calculate suffix(suf) and prefix(pre)
    
    Oh,I can't make it any clearer,I'm poor in English...
    
»
3 года назад, # |
Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

C was just awesome.

I solved it using the idea that at each operation we have to select two numbers among which one is always the maximum number among the remaining non selected numbers and the other number can be any number among non selected numbers such that sum of both numbers is equal to x(and then update x and repeat the process) If we can not do it for any selected x then answer will be No. And initial x can be (maximum of all numbers+ any other number from array).

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

Hello , Thanks for this awesome contest and awesome solution for Problem D.

However I tried to solve D using segment trees and I am able to get AC on it. What I am doing is creating two array for odd and even position and trying every swap by making appropriate updates and then rolling back to original states. I could'nt see anything wrong in my solution. Can someone help me figure it out ?

My code

Update: Figured out my bug, I skipped the fact that I had to update previous element also. xd

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

104885466 why i am getting tle

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

    Because if your use find(ms.begin(), ms.end(), val) it is linear in time, instead you should use ms.find(val), which is O(log n). I submitted your code 104886371 with it and got AC.

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

for some reason i feel tired of constructive problem.i dont hate them but while doing them i just feel so weird and solution often suprised very hard (like an unexpectd slap)

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

I advise everyone to watch this video, hope would be helpful!

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

Can we solve problem D if we are allowed to swap any two piles once? It could be a variation for this problem.

Suggesions are much appreciated.

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

If someone pls could help ! their solution for C without set ..isn't it O(n³) ? if not then why coz the three loops in worst case are gonna iterate and complete to their limit ?

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

Can anyone tell what is wrong in my D? WA on test 2: 105030694

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

Still stuck in problem D, can anyone help me? :| thanks. 105049987

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

somebody please explain why this is giving TLE for problem 1. https://codeforces.com/contest/1474/submission/104916660 again for problem 1, the following code prints all digits as 1, i cant see why it is happening https://codeforces.com/problemset/submission/1474/105175403

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

    hey combinatorialist, well I don't know the reason , but in your code this is because of you are using strings and append in strings like a=a+'1'; and b=b+digit; my suggestion is if you use the char array like this

    char a[(int)1e5+5],b[(int)1e5+5];
    int ai,bi;
    int main(){
        int t;
        cin>>t;
        vector<string>sol;
        while(t--){
            memset(a,0,sizeof(a));
            memset(b,0,sizeof(b));
            ai=0,bi=0;
            int prevsum=0;
            char digit;
            int n;
            cin>>n;
            for (int i=0; i<n; ++i){
                 cin>>digit;
                b[bi++]=digit;
                if(b[i]+1!=prevsum){
                    a[ai++]='1';
                    prevsum=b[i]+1;
                    continue;
                }
                if(b[i]!=prevsum){
                    a[ai++]='0';
                    prevsum=b[i];
                }
    
            }
            sol.push_back(a);
    
        }
        for(auto x:sol){
            cout<<x<<endl;
        }
    
    }
    
    

    hope this helps...

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

      ok.....can you also look at my second submission, it is printing every digit as 1, i cant understand why. https://codeforces.com/problemset/submission/1474/105175403

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

        bro your code is correct! You just make 1 to '1' and 2 to '2' in if(sum-b[i]==2) and else if(sum-b[i]==1) as it is character so it's sum is 97 ans you are comparing it with 2;

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

          ok, it worked...but i am still confused. when i write int sum=a[i]+b[i], this means that int sum='1'+'1' which should mean int sum="11", and then the string "11" will be converted to int? basically i am getting confused in adding two chars and then converting into int, can you explain or give me a resource from where i can read this?

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

            here co is cout<<

            char a='1',b='2';
            co a+b<<nl;///99
            co (char)(a+b)<<nl;///c
            co a-'0'+b-'0'<<nl;///3
            

            when you add two char it automatically becomes int until you convert it into char.

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

Hints for problems is such a great idea! I believe that hints+editorial is way better because some people may need just a bit of help to upsolve. Setters, please, make hints+editorial.

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

My $$$O(N^2)$$$ java sol for problem C is getting TLE. But such similar solution of others getting passed. Can anyone tell why it's getting TLE. I thought a lot but unable to figure it out. Anyone please.

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

For problem D,in case of no superability, why should we start from 0 ? why not from position n-1 ?

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

Problem B:

cout << min(1ll * p[0] * p[1], 1ll * p[0] * p[0] * p[0]) << "\n";

Instead of we can do this: int ans = 1; for (auto &it : primes) ans *= it; cout << ans << nln;

It will also gives you Accepted vardict.

To know more see my submission: https://codeforces.com/contest/1474/submission/207939116

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

The main point I missed out on was that I was just concentrating on the effect of swap which is obviously on the right side of pair but totally forgot about the condition that alternating sum should be >=0 Even then I think it would have been nightmare to implement it in easier manner bcoz even to implement right side effect, i couldn't think of easier implementation