Please read the new rule regarding the restriction on the use of AI tools. ×

mesanu's blog

By mesanu, history, 12 months ago, In English

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
  • Vote: I like it
  • +72
  • Vote: I do not like it

| Write comment?
»
12 months ago, # |
  Vote: I like it +4 Vote: I do not like it

Problem H was awesome!

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

    its nice but pretty easy for an H

    • »
      »
      »
      5 weeks ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

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

  • »
    »
    8 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    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 months ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      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 months ago, # ^ |
      Rev. 4   Vote: I like it 0 Vote: I do not like it

      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 months ago, # |
  Vote: I like it +64 Vote: I do not like it

You can avoid hard coding in problem C.

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

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

    dislike me >_<

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

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

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

    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 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

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

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

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

»
12 months ago, # |
  Vote: I like it +11 Vote: I do not like it

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

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

    totally agreed Want more this kind of tutorial in future #flamestrom

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

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 months ago, # ^ |
    Rev. 2   Vote: I like it 0 Vote: I do not like it

    using chatGPT is legal tho

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

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

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

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

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

        What do you mean?

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

          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 months ago, # ^ |
            Rev. 2   Vote: I like it 0 Vote: I do not like it

            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 months ago, # ^ |
                Vote: I like it 0 Vote: I do not like it

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

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

                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 months ago, # ^ |
                    Vote: I like it 0 Vote: I do not like it

                  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 months ago, # ^ |
                    Vote: I like it 0 Vote: I do not like it

                  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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

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

    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 months ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    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 months ago, # ^ |
      Vote: I like it +3 Vote: I do not like it

    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 months ago, # ^ |
      Vote: I like it +1 Vote: I do not like it

    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 months ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

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

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

    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 months ago, # |
Rev. 5   Vote: I like it +11 Vote: I do not like it

$$$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 months ago, # ^ |
    Rev. 2   Vote: I like it +1 Vote: I do not like it

    don't you use sort in E?, which is already O(n log(n))

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

    You can use binary search for finding solution. l = 0, r = 1e9

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

    F Can be done in O(N)

    using two pointer one on the current node and other at the first element of contigous part (which satisfy the condition).

»
12 months ago, # |
  Vote: I like it +3 Vote: I do not like it

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

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

    Author's right answer is 1 in this test: 2 15 9 6 1 3 .

    However, for 1<=i<r we can't find h[i] is divisible h[i + 1]. So I think this answer is 0.

»
12 months ago, # |
  Vote: I like it +1 Vote: I do not like it

Video Editorial For Problem A to H

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

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

»
12 months ago, # |
  Vote: I like it +2 Vote: I do not like it

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

»
12 months ago, # |
Rev. 2   Vote: I like it +1 Vote: I do not like it

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

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

    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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

For Problem F,

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

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

    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 months ago, # |
  Vote: I like it +4 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

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

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    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 months ago, # |
Rev. 3   Vote: I like it +1 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

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

    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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Video Editorial (A-H) LINK TO YOUTUBE EDITORIAL

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

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

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

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

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

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

»
12 months ago, # |
Rev. 2   Vote: I like it +8 Vote: I do not like it

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 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    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 months ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      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 months ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        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 months ago, # ^ |
            Vote: I like it 0 Vote: I do not like it

          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 months ago, # ^ |
              Vote: I like it 0 Vote: I do not like it

            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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # ^ |
      Vote: I like it +5 Vote: I do not like it

    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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

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

    Could you explain the idea?

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

      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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Can somebody explain Problem F using BS Please.

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

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 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    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 months ago, # |
Rev. 6   Vote: I like it 0 Vote: I do not like it

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 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

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

    System testing, nothing much you can do about it

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

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

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

Problem H Idea is simple but implementation bit complex.

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

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

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

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

»
12 months ago, # |
  Vote: I like it +1 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # ^ |
    Rev. 2   Vote: I like it 0 Vote: I do not like it

    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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

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

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 months ago, # ^ |
    Rev. 2   Vote: I like it +1 Vote: I do not like it

    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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

In Problem E

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

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

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

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

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

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

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

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

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

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

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

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

#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?!