Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

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

Автор mesanu, история, 12 месяцев назад, По-английски

Thank you for participating!

1873A - Короткая сортировка

Idea: flamestorm

Tutorial
Solution

1873B - Хороший ребенок

Idea: mesanu

Tutorial
Solution

1873C - Стрельба по мишени

Idea: flamestorm

Tutorial
Solution

1873D - 1D Ластик

Idea: flamestorm

Tutorial
Solution

1873E - Построение аквариума

Idea: flamestorm

Tutorial
Solution

1873F - Деревья с деньгами

Idea: mesanu

Tutorial
Solution

1873G - ABBC или BACB

Idea: flamestorm

Tutorial
Solution

1873H - Безумный город

Idea: mesanu

Tutorial
Solution
Разбор задач Codeforces Round 898 (Div. 4)
  • Проголосовать: нравится
  • +72
  • Проголосовать: не нравится

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

Problem H was awesome!

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

    its nice but pretty easy for an H

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

      I am very late, but after all: it is Div. 4 (everything is meant to be slightly easier)

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

    When both Valeriu and Marcel would be in a cycle what would be needed to check the reaching time to the entry node? if Valeriu were in a cycle answer should be "NO". but here we are checking the reaching time to the entry node.

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

      if they were both in a cycle i think the answer would be yes since V would always have 2 options to choose from , its the node out of the cycle where he could be caught.

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

      This Case is considered in the first test case itself. Previously I just read the question, so I thought they might have missed it.

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

You can avoid hard coding in problem C.

Value of cell $$$(i,j)$$$ is $$$\min(i,j,11-i,11-j)$$$.

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

    dislike me >_<

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

    Another approach is to take min Chebyshev distance from (i, j) to the 4 middle squares.

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

    Thank you for the formula. Could you please provide a more general formula that works for concentric matrices where the values decrease from the outermost layer to the inner layers? ("Do you think this formula consistently works for matrices where the values increase from the outermost layer to the inner layer min(i,j,n+1−i,n+1−j)) and thanks.

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

    I want to know how do you come up with solutions like this??

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

problem E and F gives me some real stress but overall the contest was fun!!

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

Problem G's walk-through was so clear I could understand the concept in a split second!

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

For C, I asked chatGPT to provide me with a program to generate the matrix and then I used it. Happy to get skipped as the rating doesn't matter to me.

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

    using chatGPT is legal tho

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

    That is smart, wish I'd have thought of that

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

      hello can you explain why direction of approach doesn't matter in B question like any proof if possible?

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

        What do you mean?

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

          B mei jaise greedy approach laga rhe hai na left to right jaate hue, so I'm asking right to left jaane pe same answer aayega and Better answer nahi aayega iski kya guarentee hai. I would love a proof of why Direction of approach does not matter.

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

            Are you talking about this contest’s B? My solution was just brute force where I tried everything. I reset the variable after each iteration.

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

              oh i'm really sorry i meant D (1d eraser)

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

                Well if you’re convinced that it works backward you can think of reversing the string and doing it backwards as the same thing as doing it forwards

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

                  no i am not convinced that it works forward

                  according to me the ans should be min(forward approach, back approach)

                  greedy gives me the idea to approach from one single direction but how can you say that both directions will give same answer

                  here your reversing logic doesn't apply as say i claim forward approach takes 3 operation and backward approach takes 2 operations then on reversing also answer will be same i agree(2) but this time it will be from forward approach

                  how can you claim that only by checking from one direction you will get a answer same as backward approach

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

                  Oh, I see.

                  Well, let's try to 'prove' that the forward approach always gives an optimal answer.

                  What my code is doing is it's going from 0 to n and checking if each character needs to be converted or not. If it does, start a window, otherwise move on to the next index. Notice that when we move on to the next index, we'll never come back to the previous one.

                  So why is this important? That means that when we see an element that needs to be converted, we have to start a window. You might say that there are multiple ways to start a window (for example if we want to convert i+1, we could start a window of size k>=2 at index i) so that an index is converted, but the most optimal way will always be when it's started at the index that needs to be converted, since that way more indices ahead can be affected.

                  If you're convinced that the forward approach is correct, you can see why the backward approach will also be correct from my above reply, thus showing that both approaches will give the same answer.

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

Can someone explain why in problem B, it's optimal to increase the smallest digit ?

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

    yes because if we notice that the ratio change of x+1/x (x is smallest digit) is large as compare to bigger digits so thats why it always gives ans..

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

    if you add 1 to smaller number then you gain original product + (original — small). But if you add 1 to any other than smaller you gain -> Original product + (original — some other which is not smallest) . So first case will always be bigger

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

    Say you have (3,3,2,3):

    Let's pretend you need to find the largest possible product with all these elements except one.

    This is obviously (3*3*3), as 2 is smaller than 3, and (3*3*2)<(3*3*3). Now we know that the excluded value is 2.

    Now that we've got (3*3*3) as the largest product excluding the smallest value, we can add 1 to the excluded value, and now we've increased the product by (3*3*3).

    We went from (3*3*3)*2 to (3*3*3)*3.

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

    Based on AM-GM Inequality, a set of numbers with specific sum will have largest product if all the numbers are equal. Increasing the smallest digit will make these digits be closers to their average. It is not a solid proof but rather an intuitive way to quickly realize it.

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

      hello can you explain why direction of approach doesn't matter in B question like any proof if possible?

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

    assume x=a*b*c*d

    then (a+1)*b*c*d-x = b*c*d

    basically, increasing a single number by one increases the answer by the product of all other numbers, so it's best if b,c,d are the largest possible, which means a is the smallest possible

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

$$$E$$$ can be solved in $$$O(n \log(n))$$$ and $$$F$$$ can be solved in $$$O(n)$$$.

For $$$E$$$, first sort the array $$$a$$$. The optimal value of $$$h$$$ is $$$\max_i(v_i)$$$ where $$$v_i=\min(a_{i+1}-1, \left \lfloor (x+PrefixSum([a_1:a_i]))/i \rfloor \right)$$$ if $$$v_i \geq a_i$$$ and $$$v_i=0$$$ otherwise (set $$$a_{n+1}$$$ as $$$\infty$$$ or handle the case $$$i=n$$$ separately).

$$$F$$$ can be done by sliding windows method.

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

For problem F: Given, (l≤i<r). I don't understand why l and r can be same.

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

Video Editorial For Problem A to H

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

    please make vedio editorials for atcoder regular contest.There are no english vedio editorial for that.

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

In f, we can use two pointers instead of binary search, so it can be reduced to O(2*n)

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

Could someone help me, why this code is getting wrong answer in problem H https://codeforces.net/contest/1873/submission/224501501

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

    It fails for the below input

    	1
    	10 1 4
    	1 2
    	2 3
    	3 4
    	4 5
    	5 6
    	5 7
    	6 8
    	5 9
    	5 10
    	1 8
    	
    good:
    	YES
    	
    bad:
    	NO
    	
    
»
12 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

For Problem F,

Can someone explain if I take l = 2 and r = 2 as well, then how is 2<=2<2 ?

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

    pick l=2 and r=2 , you will find that no such i satistied l<=i< r . That means you don't need to check any h[i]. So you can collect fruit from a[l] to a[r] (that's a[2] actually) . The same thing works when you want to collect fruit from only one tree.

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

I found an exactly same problem as problem H (Mad City)

https://github.com/all1m-algorithm-study/uospc2021/blob/main/problems/Police_Thief/statements.md

This is from an intra-college contest held by University of Seoul in 2021.

There is no English statement, but if you use a translator you'll notice there are few differences.

Even the examples given in the descriptions are the same.

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

Thanks for a good contest, although i joined late the experience was enjoable

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

Problem E can be solved in $$$\mathcal{O}(n\log n + \log n\log (a_i+x))$$$.

First, we notice that the permutation of $$$a[i]$$$ does not matter at all.

So we can sort(a,a+n) first, and then when we want to calculate how much water we use when the height is $$$h$$$, we can use idx=lower_bound(a,a+n,h)-a, and then the water we use nowuse=idx*mid-s[idx-1].

$$$s[i]$$$ is the prefix of sorted $$$a[i]$$$, i from 0 to n-1. We can use this because for $$$idx\le i\le n-1$$$, we have $$$a[i]>h$$$, so the use of $$$i$$$ is $$$0$$$.

By using this way, we can avoid calculating max(0,...) with n times.

Since sort takes $$$\mathcal{O}(n\log n)$$$ and in every check in binary search we use lower_bound which is $$$\mathcal{O}(\log n)$$$, we have $$$\mathcal{O}(n\log n + \log n\log (a_i+x))$$$ in all.

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

In problem c:

auto position = [](int i, int j)->int 
{
    int output;
    if((i+j)<=9){
        output = min(i, j);
    }else{
        output = (9-max(i, j));
    }
    output++;
    return output;
};
  • »
    »
    12 месяцев назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I use this equation : point = min(min(i,9-i),min(j,9-j)) + 1 it's the minimum distance to the edge + 1.

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

for problem G, as mentioned in the tutorial, we can see the problem as each B choose one direction(left or right) to eat the A's, so we can use dp.

dp[i][0] means if the i-th B choose to go left, the maximum A's that the 1-th, 2-th, ..., i-th B can eat. dp[i][1] is similar, it means the i-th B choose to go right.

therefore, we can get the transition equation: dp[i][0] = dp[i-1][0] + i-th B's position — (i-1)-th B's position — 1 (because if the (i-1)-th B go right and the i-th B wants to left, it will have conflict, so (i-1)-th B can only choose to go left) dp[i][1] = max(dp[i-1][0], dp[i-1][1]) + (i+1)-th B's position — i-th B's position (if i-th B wants to go right, we don't need to care about the (i-1)-th B's choice)

and here is the implementation https://codeforces.net/contest/1873/submission/224561489

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

please can someone suggests similar problems to F in which you do binary search on the answer plus some other computations?

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

    In problem F i have first searched for a segment of divisible no.s and then i have applied sliding window technique . The time complexicity was 2.n which is actually O(n). Try this approach.

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

Video Editorial (A-H) LINK TO YOUTUBE EDITORIAL

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

Not getting how to solve F problem, can anyone explain the intuition?

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

I request Div4's authors to make future rounds a little more challenging. This was on the easier side.

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

    That's why it's DIV4. To get more challenge you can always participate in other divisions.

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

For the last problem, I didn't notice the number of edges is n, I skipped the first line immediately assuming it just says there are n nodes. Then I thought maybe around 20 mins on this and was amazed how people can solve it while I was trying to prove it is a hard problem. It was like finding a bunch of induced cycles, which isn't an easy problem in general graphs. I can't blame that it wasn't explicit enough, since if I was reading the input format or the first line, it was clear there are n edges.

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

    I've also read the problem like this.

    In such version, we can solve it at least as follows (or maybe easier):

    • for each vertex, determine whether it lies on any cycle
    • for each vertex, find distance from Valeriu
    • for each vertex, find distance from Marcel
    • Valeriu wins if there is a vertex on a cycle that is closer to Valeriu than to Marcel
    • »
      »
      »
      12 месяцев назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      I think you are right. I thought too deep about it: I thought the winning strategy is to walk along an induced cycle, otherwise, marcel can at some point go along a chord of a cycle and catch Valeriu. Finding a winning strategy is difficult I believe, the question didn't ask for the winning strategy, though. I think the reason I've thought too much about it is that, I overlooked that every vertex that lies on a cycle, also lies on an induced cycle, so I didn't need to check if a vertex is on induced cycle, if it is on a cycle, certainly there is an induced cycle the vertex is on it. So, yes it was easier to decide if he wins but not easy to find a winning strategy.

      Also one last and less important point: the approach you mentioned in general graphs could be quadratic to #vertices, so if the number of the vertices is big (like in this case), it could fail if it has too many edges (well this case didn't have that).

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

        The first item (for each vertex, determine whether it lies on any cycle) can be performed with a single depth-first search, similar to finding articulation points or biconnected components.

        Finding distances is two breadth-first searches, one from Marcel and the other from Valeriu.

        So the solution is O(E) in total.

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

          That’s correct, and O(|E|) in dense graphs could lead to O(|V|^2) and if |V| is big, like 1e5, then it will be TL. But, of course for this particular question it doesn’t happen.

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

            When the graph is given explicitly, which is true in the majority of the problems, $$$O(|E|)$$$ is quite distinct from $$$O(|V|^2)$$$.

            If we can read it, which takes $$$O(|E|)$$$ already, we can certainly work with it in $$$O(|E|)$$$ as well.

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

How to understand "Because we have a tree with an additional edge, our graph has exactly one cycle."? I think we are only gived a simple graph and there may be more cycle.

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

    It follows from the statement "The roads are given that it is possible to get from any building to any other building going along the roads.". This means the graph is a connected graph. A connected graph with n nodes and n-1 edges can be proven to be a tree. There is edge left over after making the tree and adding it must create a single cycle (as every node is already connected).

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

In hindsight my bridge-finding algorithm seems like an overkill :) 224589798

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

    Could you explain the idea?

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

      If you don't understand anything just read the offical solution :))) It's much faster, simpler and more elegant.

      With the given conditions, every bridge in the graph does not belong to the cycle, and thus every non-bridge belongs to the cycle. After we traverse on the graph we will find the full set of vertices that belong to the cycle. Start traversing from Valeriu's positon until you reach one that is in the cycle (possibly Valeriu's original position itself) and calculate the distance between the vertices. As the tutorial above indicates, this is Valeriu's entry to the cycle. We then calculate the distance between that entry vertice and Marcel's. The answer is No if the former distance is not smaller that the latter, or both Valeriu and Marcel share the same starting position.

      For an implementation of the bridge-finding algorithm, see https://cp-algorithms.com/graph/bridge-searching.html#implementation.

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

Can somebody explain Problem F using BS Please.

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

Can some please explain why I got wrong answer when the value assigned to 'hi' was 1e14 or 1e18?

https://codeforces.net/contest/1873/submission/224393419

This resulted in wrong answer in test case 4 but was accepted when I updated the value of 'hi' to 1e10.

Thanks.

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

    Because when 1e14 or 1e18 is multiplied by 2*10^5 (maximum size of array) an overflow will occur (long long maximum value is approximately 9*1e18)

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

Why in problem H, in test 2, in test case 3, the answer is NO? Test case: 1 18 7 15 14 6 14 8 6 18 4 13 3 12 11 9 14 2 14 17 14 11 11 5 1 7 16 11 15 11 14 18 1 13 10 8 13 14 12 6 UPD: Sorry I missed one test case, the answer for test case above was YES

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

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

You can also watch the video editorials I made on the problems E , F, G and H

Enjoy watching and let me know what you think about them!

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

H problem Clearing the array vis[N] is the most important !

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

Problem H Idea is simple but implementation bit complex.

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

Problem F can also be solved using Binary Search ... My code

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

Can someone explain the second last sample test case for problem H?

8 5 3

8 3 5 1 2 6 6 8 1 2 4 8 5 7 6 7

I think Valeriu can always escape Marcel by choosing node 3 or 4, whichever one Marcel doesn't choose.

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

G is the hardest problem I think, but solving it was gratifying

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

I absolutely loved the editorial for problem G! Wow! It was so fun to read, and so easy to understand! It would be amazing if all editorials were like this: being longer is not necessarily bad if a longer editorial is better at explaining the solution than a shorter one.

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

What exactly I am doing wrong here in Problem E. I solved this on a pen and paper, and seems to me that the calculations are correct. I am first sorting the heights and then start filling up from the leftmost side of the tank. My submission My solution

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

    At the end, you're adding x/n.. instead, you need to add x/(i+1) where i is the index of the largest coral that gets submerged. Also, you need to use a larger data type.. I modified your code.

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

why the answer of test case "ABAAB" in problem G is 2

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

Hey, Can anyone help me with this runtime error? I have tried debugging and wasted a lot of time. Any help is appreciated.

https://codeforces.net/contest/1873/submission/226134316

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

    In function dfs() last else block you are popping from the set without checking if it is possible to pop from the set Here is your AC code

    You can always you assert to figure out the mistake in your code.

    EDIT -> The word set in the first para is actually the stack you are using. I called it set as I was thinking about memory and pointers. In the last statement, "use assert"

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

Кто может помочь? мне письмо пришло, о том что у меня значительным образом совпадает с решением другого участника. Онлайн компиляторами не пользовалась. У меня pyCharm. Решала и писала сама. Как это и кому доказывать? у меня снесли весь результат этого соревнования. Учусь в 5 классе и участвовала первый раз и вот так((

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

    Если просто снесли результаты соревнований, но не забанили или ограничили как-либо ещё — просто забей:)

    Скорее всего вряд ли это повториться, и разборки того не стоят

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

226968842

Can someone help me debug this code for problem F . I can't seem to find on which test case it fails.

Thanks in Advance :)

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

227178473 my dp with memoisation solution,store every preceding and proceeding B's and then use dp to choose the best possible combinations(note that:once u eat all the A's from right,u cant eat any left A's for all the B's proceeding that B).

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

In Problem E

why the concept mid=(low+high)/2; is not working?

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

problem/F

i have being trying to understand the editorial of this question. I can't understand how at the end when we cout<<r<<endl; how is r the maximun subarray. like the logic behind how this is happening. Can anyone explain y this is happening?

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

Could someone tell me for problem e why do we have to consider high = 2e + 7?

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

Problem F can also be solved in O(n) using sliding window approach. It is the modified version of the problem of Longest subarray having sum of elements atmost K. My submission — https://codeforces.net/contest/1873/submission/233766852

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

Can anyone please tell me the error in this code 237621263 for the 1873F - Money Trees.

I am first finding whether $$$h[i]$$$ is divisible by $$$h[i+1]$$$ for all $$$0 \leq i < n$$$. Then, for all the contiguous subsequences $$$[h_l,h_{l+1},…,h_r]$$$ and storing $$$l,r$$$, and the $$$sum$$$ in a map as a single entry for a sequence.

Now, for a sequence using two pointers $$$start$$$ and $$$end$$$, I am traversing the subsequence; if $$$a[start] > a[end]$$$, then increase the $$$start$$$ pointer and decrease the $$$sum$$$ by $$$a[start]$$$ otherwise decrease the $$$end$$$ pointer and decrease the $$$sum$$$ by $$$a[end]$$$ until the $$$sum \leq k$$$ condition is satisfied.

The above process is done for all the sequences, and the maximum length will be the answer.

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

In Problem F. Money Trees can anyone tell me why my this code is not passing test case 46 of test case 2 . https://codeforces.net/contest/1873/submission/238364394

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

What does the phrase "Notice the order of operations doesn't matter." precisely means for the problem D

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

The tutorial of problem G is beautiful, it was very informative for me to learn how to approach a problem :)

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

243211598 i dont understand why counting sum is giving overflow on problem E.

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

Overall Good contest, No offense but I don't think problem G was kind of an Ad hoc problem. I solved it using DP. Later came to see your approach and the explanation is amazing.

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

Problem C can be solved using a triple for loop: since every "square" has a delta with the outer one of 1, that is constant, we can iterate trough the whole sub-square adding 1 to the final answer each time we find a 'X'. In this way, we will find an 'X' as many time as it worths.

int ans = 0;
for (int x=0; x<5; ++x)
    for (int i = x; i < 10-x; ++i)
        for (int j = x; j < 10-x; ++j)
            if (grid[i][j] == 'X') ++ans;

My sumbission as reference: 247543890

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

ik I'm late but in E, instead of computing value of 'tot' for every height(mid), why not just check if the height is greater than the height of longest coral, if it is, then instead of looping through all coral heights to calculate 'tot' we can calculate it by subtracting total volume of coral from total volume of aquarium. Total volume can be precomputed while taking input of coral heights.

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

1873C — Target Practice (alternative way to it may be a bit convenient if we don't want to write that number matrix)

// By: TESFAMICHAEL TAFERE

include <bits/stdc++.h>

using namespace std;

int main() { ios::sync_with_stdio(false); cin.tie(nullptr);

int t; cin >> t; while (t--) { char s[10][10];

int count = 0;
for (int i = 0; i < 10; i++)
{
     for (int j = 0; j < 10; j++)
    {
        cin >> s[i][j];
      if (s[i][j] == 'X')
      { 
        if (i == 0 || 10 - 1 == i || j == 0 || 10 - 1 == j)
             count++;
        else if (i == 1 || 10 - 2 == i || j == 1 || 10 - 2 == j)
             count+=2;
         else if ((i == 2 || 10 - 3 == i) || j == 2 || 10 - 3 == j)
             count+=3;
         else if (i == 3 || 10 - 4 == i || j == 3 || 10 - 4 == j)
             count+=4;
         else 
             count+=5;
      } 
   }
}
cout << count << "\n";

}

return 0;

}

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

Problem G becomes way easy you just have to find smallest consecutive A substring . The ans = Number of A(s) — Length of smallest consecutive A(s) substring . Submission = https://codeforces.net/contest/1873/submission/264596469

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

Problem G was very good for the beginners and thanks for the lovely Editorial .

But the given implementation part (code) is bit complex and not easy to understand. I think I have written a code which is very easy to understand code out of all the solutions I've watched till now

Here's my submission link for those who are struggling in the implementation part : https://codeforces.net/contest/1873/submission/265911111

Approach is simple :

  1. If the string start with 'B' or ends with 'B' or if it has any two consecutive 'B' in it , then the answer is simply the sum of all A's in the string.

  2. Otherwise we have to eat the A's where it occurs more in a chunk , hence the chunk with minimum no. of A's would be ignore , so in this case we can simply print, Sum of all A's — (minimum number of A's in any chunk/group);

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

#include <bits/stdc++.h> #include <algorithm> #include <limits> #include <cstring> using namespace std; #define Code ios_base::sync_with_stdio(false); #define By cin.tie(NULL); #define chaki cout.tie(NULL); #define ll long long #define int ll #define ld long double #define ull unsigned long long const ld pi = 3.141592653589793238; const ll INF = LONG_LONG_MAX; const ll MIN = LONG_LONG_MIN; const ll mod = 1e9 + 7; typedef pair<ll, ll> pll; typedef vector<ll> vll; typedef vector<pll> vpll; typedef vector<string> vs; typedef unordered_map<ll, ll> umll; typedef map<ll, ll> mll; #define ordered_set tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> #define vv(T) vector<vector<T>> #define maxhp(T) priority_queue<T> #define minhp(T) priority_queue<T, vector<T>, greater<T>> #define mem(n, i) memset(n, i, sizeof n) #define p(A, B) pair<A, B> ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); } ll lcm(ll a, ll b) { return (a / gcd(a, b) * b); } ll moduloMultiplication(ll a, ll b, ll mod) { ll res = 0; a %= mod; while (b) { if (b & 1) res = (res + a) % mod; b >>= 1; } return res; } ll powermod(ll x, ll y, ll p) { ll res = 1; x = x % p; if (x == 0) return 0; while (y > 0) { if (y & 1) res = (res * x) % p; y = y >> 1; x = (x * x) % p; } return res; } bool sorta(const pair<int, int> &a, const pair<int, int> &b) { return (a.second < b.second); } bool sortd(const pair<int, int> &a, const pair<int, int> &b) { return (a.second > b.second); } bool isPrime(ll n) { if (n <= 1) return false; if (n <= 3) return true; if (n % 2 == 0 || n % 3 == 0) return false; for (int i = 5; i * i <= n; i = i + 6) if (n % i == 0 || n % (i + 2) == 0) return false; return true; } bool isPowerOfTwo(int n) { if (n == 0) return false; return (ceil(log2(n)) == floor(log2(n))); } bool isPerfectSquare(ll x) { if (x >= 0) { ll sr = sqrt(x); return (sr * sr == x); } return false; } #define ff first #define ss second #define mp make_pair #define pb push_back #define ps(x, y) fixed << setprecision(y) << x; #define vi vector<int> #define vs vector<string> #define vvi vector<vector<int>> #define vvs vector<vector<string>> #define vpi vector<pair<int, int>> #define i1(A, a) \ A a; \ cin >> a; #define i2(A, a, b) \ A a, b; \ cin >> a >> b; #define i3(A, a, b, c) \ A a, b, c; \ cin >> a >> b >> c; #define i4(A, a, b, c, d) \ A a, b, c, d; \ cin >> a >> b >> c >> d; #define i5(A, a, b, c, d, e) \ A a, b, c, d, e; \ cin >> a >> b >> c >> d >> e; #define i6(A, a, b, c, d, e, f) \ A a, b, c, d, e, f; \ cin >> a >> b >> c >> d >> e >> f; // #define Fl(i, n) for (ll i = 0; i < n; i++) // #define Bl(i, n) for (ll i = n; i >= 0; i--) #define fl(i, k, n) for (ll i = k; i < n; i++) #define bl(i, k, n) for (ll i = n; i >= k; i--) #define yes cout << "yes" << "\n"; #define minus1 cout << "-1" << endl; #define no cout << "no" << "\n"; #define it(v) v.begin(), v.end() #define itr(v) v.rbegin(), v.rend() #define rit(v) v.end(), v.begin() #define o(x) cout << (x) << " "; #define o2(x, y) cout << (x) << " " << (y) << " "; #define o3(x, y, z) cout << (x) << " " << (y) << " " << (z) << " "; #define oe(x) cout << (x) << endl; #define oe2(x, y) cout << (x) << " " << (y) << endl; #define oe3(x, y, z) cout << (x) << " " << (y) << " " << (z) << endl; bool check(vector<int> &a, vector<int> &h, int key, int k) { int left = 0; int right = 0; int temp = k; while (right < h.size()) { if (right - left >= key && k >= 0) { return true; } if (right == h.size() - 1) { k -= a[right]; right++; // oe(k); if (right - left >= key && k >= 0) { return true; } else break; } else if (k < 0) { k += a[left]; left++; } else if (h[right] % h[right + 1] == 0) { k -= a[right]; right++; } else if (k - a[right] >= 0) { k -= a[right]; right++; if (right - left >= key && k >= 0) { return true; } else { k = temp; left = right; } } else { k = temp; right++; left = right; } // oe(k); } return false; } void solve() { i2(int, n, k); vi a(n); vi h(n); for (int i = 0; i < n; i++) { cin >> a[i]; } for (int i = 0; i < n; i++) { cin >> h[i]; } int l = 0; int r = n; int ans = 0; while (l <= r) { int mid = l + (r - l) / 2; // cout<<"mid: "<<mid<<endl; if (check(a, h, mid, k)) { ans = mid; l = mid + 1; } else { r = mid - 1; } } oe(ans); } signed main() { Code By chaki ll tt; cin >> tt; while (tt--) { solve(); } }

Problem E : Can anyone help to find an error?!