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

Автор awoo, история, 5 месяцев назад, По-русски

1901A - Поездка

Идея: BledDest

Разбор
Решение (Neon)

1901B - Фишка и лента

Идея: Roms

Разбор
Решение (Roms)

1901C - Прибавь, раздели и округли

Идея: BledDest

Разбор
Решение (awoo)

1901D - Очередное сражение с монстрами

Идея: BledDest

Разбор
Решение (vovuh)

1901E - Сжатие дерева

Идея: BledDest

Разбор
Решение (Neon)

1901F - Благоустройство

Идея: adedalic

Разбор
Решение (adedalic)
  • Проголосовать: нравится
  • +47
  • Проголосовать: не нравится

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

In problem D, I am struggling to understand the statement. According to my perception, the answer to the first test case should be 7. I will choose i = 4. The chain of the indices to strike will be like 4->3->5->6->2->1. Please someone correct me.

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

    The spell's power must cover the worst-case scenario, given the chosen location.

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

      Ohh! That last line. Thanks a lot.

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

      Worst case I don't get it. First Index will chosen same for best case and worst case ?

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

      then if we consider i=1 as a case that x must be atleast 9 right?

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

        you can actually choose the value of i, so despite x have to be 9 when i=1, you can choose other i instead of 1

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

Reached Specialist, in this round.

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

problem E is a art.

It takes a lot of effort to achieve perfection in whatever any direction.

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

for C, if we have min = 2 & max = 11. since min is even then x=0 & min = 1, max = 5 now if I go according to the editorial. it would take a total of 4 steps (1,3 -> 1,2 -> 1,1). but when min = 1 & max =5, I can take x =0 and reduce in 1 step less (1,2 -> 1,1) total of 3.

am I missing something here?

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

    Of course. When min=1 and you don't add 1 then 1/2 = 0

    It's easier to think about it another way: if max is odd then by adding anything will not gain any steps reduction.

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

Problem D: If it's necessary to check all indices as a first target point (according to tutorial), then why problem statement says that "Vasya chooses the first target optimally"?

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

    Vasya chooses the first target optimally

    How would you figure out the optimal first target without checking all indices as first target point?

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

      Oh yeah.. I got it. We need to take the minimum of these max values for an optimal first target (if I'm not wrong).

      Thanks...

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

      Can't he choose the max element as the 1st target?

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

        That's not always optimal.

        4
        4 5 2 1
        

        If we start at monster $$$2$$$ with health $$$5$$$, the attack might take the path $$$2\rightarrow 3\rightarrow 4\rightarrow 1$$$ and we need to start with $$$x = 7$$$. If instead we start at monster $$$1$$$ with health $$$4$$$, we can start with $$$x = 6$$$.

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

[Problem C] Can someone help me understand why choosing $$$x$$$ as the average between $$$max$$$ and $$$min$$$ (or $$$a$$$ and $$$b$$$) doesn't work?

I guess it has somethings to do with parities and rounding down, but I honestly cannot figure it out myself.

  • »
    »
    5 месяцев назад, # ^ |
    Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится
    x = (a + b)/2
    
    a ->  (a + (a+b)/2) / 2
    b -> ( b + (a + b)/2) / 2
    if b == a + 1:
      a -> (a + (a+a+1)/2)/2 -> (a+a)/2 ->a
      b ->  (a+1 + (a+a+1)/2)/2->(a+a+1)/2->a
    diff reduce!
    if b == a+2:
      a ->  (a + (a+a+2)/2)/2 -> (a+a+1)/2 ->a
      b -> (a+2 + (a+a+2)/2)/2->(a+2+a+1)/2->a+1
    diff reduce too
    if b == a+3:
       a ->  (a + (a+a+3)/2)/2 -> (a+a+1)/2 ->a
       b ->  (a+3 + (a+a+3)/2)/2 -> (a+3+a+1)/2 ->a+2
    diff reduce too
    ...
    
    
  • »
    »
    5 месяцев назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится
    8
    0 0 1 0 6 4 3 0
    a = 0  b = 6
    1)
    avg = 3                            x = 0
    a -> (a + 3)/2 -> 1           a-> a/2 ->0
    b -> (b + 3)/2 -> 4           b->b/2->3
    
    abs  =   3                           3
    2)
    avg = 2                           x = 0
    a -> (a+2)/2 ->1            a -> 0   
    b ->(b+2)/2 -> 3            b ->1
    abs  =  2                            1
    3)
    avg = 2                         x = 0
    a -> (2+2)/2 ->1          a -> 0
    b -> (3+2)/2 -> 2         b ->  0
    abs  =  1                         0
    4)
    avg = 1
    a -> (1+1)/2 ->1
    b -> (2+1)/2 ->1
    abs  =   0                        0
    
  • »
    »
    5 месяцев назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    In addressing the question of why choosing $$$x$$$ as the average between the maximum ($$$b$$$) and minimum ($$$a$$$) values doesn't always yield the optimal result in problem C, it is essential to understand how the parity effects the calculations.

    We categorize the scenarios based on the parity of $$$a$$$, $$$b$$$, and $$$x$$$. By brute force, we identify eight possible parity combinations, but let's consider two illustrative examples:

    • When $$$a=2i$$$, $$$b=2j+1$$$ and $$$x=2k+1$$$, the difference is $$$\left\lfloor (b + x)/2\right\rfloor - \left\lfloor(a+x)/2\right\rfloor = j - i + 1$$$.

    • When $$$a=2i+1$$$, $$$b=2j$$$ and $$$x=2k+1$$$, the difference is $$$\left\lfloor (b + x)/2\right\rfloor - \left\lfloor(a+x)/2\right\rfloor = j - i - 1$$$.

    In the remaining six cases, the difference is $$$\left\lfloor (b + x)/2\right\rfloor - \left\lfloor(a+x)/2\right\rfloor = j - i$$$.

    The optimal strategy emerges from these calculations. Matching the parity of $$$x$$$ with $$$a$$$ tends to minimize the difference. This is because the difference doesn't depend on $$$k$$$ and different parity can lead to a larger difference when $$$a$$$ is even.

    Now, regarding your specific question, if $$$a=4i+1$$$ and $$$b=4j$$$, then choosing $$$x$$$ as the average, $$$x = \left\lfloor (a+b)/2\right\rfloor = 2(i + j) = 2k$$$, does not align with the optimal strategy. In this case, $$$x$$$ is even while $$$a$$$ is odd, and as we've established, matching their parities is crucial for optimality.

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

      Can we also say as long as parity of a and x matches it doesn't matter whatever x is since difference is independent of k ?

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

      Please take a look at my submission, I used the midpoint of the min and the max rounded up.

      Submission Number: 259266474

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

    Take a look at Ticket 17162 from CF Stress for a counter example.

    If you apply this strategy, the choice of $$$x$$$ at each step would be:

    1. $$$\frac{3+0}{2} = 1$$$, Resultant array: $$$[2, 0]$$$
    2. $$$\frac{2+0}{2} = 1$$$, Resultant array: $$$[1, 0]$$$
    3. $$$\frac{1+0}{2} = 0$$$, Resultant array: $$$[0, 0]$$$

    However, it's possible to achieve this in 2 steps instead:

    1. Choose $$$x = 0$$$, Resultant array: $$$[1, 0]$$$
    2. Choose $$$x = 0$$$, Resultant array: $$$[0, 0]$$$.
»
5 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Nice contest! I've learned a lot from it.

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

Question no. C, what does the line " You can consider all cases of parities of a and b to discover that it's always possible to divide the difference by 2, rounding down, and it's never possible to make it less than that. ".

I am struggling to understand the solution. Please help me understanding the solution.

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

Why there is a binary search tag in problem D. Although at first glance, it seems that we can go for a approach like BS in D. But NO!!!! so why there's a tag of BS

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

Why there's a tag of binary seach in problem D: although it seems at first glance that we can go for a approach like BS. But then realised there's nothing to do with BS.

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

Thanks for the fast editorial !

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

For problem D, my after-contest solution only involved checking the first location, the last location, and the location with the monster that needs the most spell power to kill.

Submission: https://codeforces.com/contest/1901/submission/234308715

Is the test data weak, or is the strategy described above valid? Thanks.

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

In ques. D , I have trouble understanding the worst case, for eg in 2 1 5 6 4 3 can someone explain what will be the worst case and why ? according to me 2->1>5->6->4->3 should be the worst case

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

In problem D, according to my understanding the worst case for 2 1 5 6 4 3 should be 2->1->5->6->4->3 and that would not be possible with 8 damage ?

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

    We are optimally selecting the start point, then we have to consider worst case after selecting start point

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

I think for Solution for problem D author wanted to write min(max(A[j]+n-j),A[i],max(A[j]+j-1)). Instead of max(max(A[j]+n-j),A[i],max(A[j]+j-1))

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

nvm I set my dp = -1 if it's not visited but I forget that the dp might be negative

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

i got accepted on F (237389815) by computing the overall hull in each step of the transition from old points to new points (the hardest part is to update the segment L = PQ that goes from a point P of the prefix hull to a point Q of the suffix hull).

we have to keep the prefix hull, the suffix hull and L = PQ updated. for each point y of the suffix hull, consider the segments that goes from y to each point x of the prefix hull. if we fix y, we can binary search for the first x which cross product changes sign in relation to the point x-1. with this we can find the point x_best of the prefix hull such that the line that contains the segment (x_best, y) necessarily covers all points of the prefix hull. we now need only to verify if this line also covers the suffix hull, which can be done with a cross product in relation to y+1. the first point of the suffix hull that this happens is the point Q.

in each step we should update the point Q based on the removals and insertions of new points of the current prefix and suffix hull. in order to keep it correct, we can do the following steps:

1) update the suffix hull by removing its current leftmost point and undoing the points that have been removed by it (inserting them back). for each of these added points, we must verify wether or not its line covers the prefix hull. this can be done in O(log n) for each point with binary searching in the prefix hull + some cross products for verification, as explained. doing this we are locating the new position of point Q.

2) update the prefix hull and change the suffix hull point Q status accordingly. since the added point covers all the prefix hull removed points (afterall, it defines the new prefix hull), we only verify if the point added changes the status of Q, with a binary search on the suffix hull, and update the point Q (basically, it can only make the point Q go more to the right).

3) now we have an updated point Q, and can binary search again the prefix hull to find the other point P that makes segment L.

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

There is a small error in the editorial for problem D. In the last three lines, the minimum spell power needed is $$$\displaystyle \min (\max_{j = 1} ^ {i - 1} a_j + (n - j), a_i, \max_{j = i +1} ^ {n} a_j + (j - 1))$$$, instead of the original $$$\displaystyle \max(\max_{j = 1} ^ {i - 1} a_j + (n - j), a_i, \max_{j = i +1} ^ {n} a_j + (j - 1))$$$. Guess it's just a typo.

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

There is a small error in the editorial for problem D. The minimum spell power needed is $$$\displaystyle \min (\max_{j = 1} ^{i - 1} a_j +(n - j), a_i, \max_{j = i + 1} ^ {n} a_j + (j - 1))$$$ instead of the original $$$\displaystyle \max (\max_{j = 1} ^{i - 1} a_j +(n - j), a_i, \max_{j = i + 1} ^ {n} a_j + (j - 1))$$$. Guess it's just a typo.

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

In Problem C, I was thinking in terms of binary representation. Taking x as the most appropriate number to shift the prefix of same bits to the right considering left as the largest similar bit (with all before it as same) but didn't went very far with it. Any suggestion with approach?

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

For problen D, for this case

6

1 6 1 1 6 1 , the accepted ans is 10, but shouldn't it be 9?

1 6 1 1 6 1

5 6 7 8 9 4. <--- Like this?