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

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

1879A - Подстроено!

Идея: Roms

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

1879B - Фишки на доске

Идея: BledDest

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

1879C - Чередуй!

Идея: Roms

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

1879D - Сумма функций XOR

Идея: Roms

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

1879E - Интерактивная игра с раскраской

Идея: BledDest

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

1879F - Остаться в живых

Идея: BledDest

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

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

Clear editorial!

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

Clear Editorial, but it should have appeared in a more clear place lmao

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

D was pretty fun

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

There is a question on task D, why we don't take into account carry-over units from previous digits when counting the i-th bit? Thanks in advance.

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

    There are no such carry-over units because it is the sum of XOR not plus(maybe)

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

      Yes, I agree, but after XOR we also add them to each other and we have to take into account that the previous bits affect the current one

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

F was really fun

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

In D's editorial, if pref(x) is equal to the number of ones on the prefix of length x modulo 2, then for even number of ones, shouldn't pref(x) be 0?

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

    Yeah, this is an error, thank you. Will be fixed in a couple of minutes

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

E is so cringe

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

For anyone else struggling to formalize why their intuition for B leads to an optimal arrangement of chips:

The key insight is what the tutorial notes -- a valid chip arrangement must satisfy either (1) each row has at least 1 chip or (2) each column has at least 1 chip.

Now, we have two cases.

Say we have a valid chip arrangement that satisfies (1). Then, we can make an arrangement that is as cheap or cheaper by removing any extra chips so that each row has exactly one chip (vs. at least one). From here, observe that the cheapest 1-chip-per-row arrangement is the one you get by picking the cheapest column and filling each cell in it with a chip. Any other 1-chip-per-row arrangement is more expensive because there will be a chip in the same row, but a more expensive column.

Similarly, say we have a valid chip arrangement that satisfies (2). Then, we can make an arrangement that is as cheap or cheaper by removing any extra chips so that each column has exactly one chip (vs. at least one). From here, observe that the cheapest 1-chip-per-column arrangement is the one you get by picking the cheapest row and filling each cell in it with a chip. Any other 1-chip-per-column arrangement will be more expensive because there will be a chip in the same column, but a more expensive row.

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

    Proof of the insight: Suppose that there is at least one row missing and at least one column missing. You can then pick a cell such that the cells location is (missing row,missing col) which isn’t covered.

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

In problem F, it's not necessary to use a sparse table. It is enough to store 2 maximums for every suffix and for a segment [l, r] we can take suff max on [l, a]. This works because if exist some hj >= hi, where l <= i <= r and j > r, we will get j's real value in a different segment and this value will be definitely greater than i's

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

Thanks to the authors for their work on this round :)

Here is my advice about the problems

A
B
C
D
E
»
14 месяцев назад, # |
  Проголосовать: нравится +3 Проголосовать: не нравится

Nsqrtn pass on F:225085205

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

How are we colouring a bamboo (All nodes having one child except the last one) in E ?

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

My approach on C: If we consider a maximal block of same character sequence of size say $$$l$$$ then the number of ways we can pick an element to survive in that block is $$$l$$$ ways, after which there exists $$$(l-1)!$$$ arrangements to delete the remaining elements in the block. Hence there exists a total of $$$(l - 1)! \times l = l!$$$ ways within the block to perform the valid operation. And if there are $$$k$$$ such blocks then there exists a total of $$$\prod_{i}^{k}l_{i}!$$$ valid operations.

This approach fails however, not sure why. Any help/corrections appreciated!

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

    Did you figure it out?

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

      I just thought of a counter example: 0011 expected answer: 8 because n-k = 2 -> 2!*2*2 = 8 The solution you provided is 4. Still not sure why it doesn’t work

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

        So after thinking for a bit your solution only computes the number of ways to permute each group, in other words, the number of ways you can pick a number from each of the groups. It doesn’t take into account that you can select numbers from different groups before fully finishing one group (I don't know if that makes sense).

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

Can someone please explain why the time complexity in D comes out to be nlogA? Shouldn't it be n^2logA?

We are going from l=1 to r for every r; that means (n^2)/2 linear time operations employing n^2 time complexity. Am I wrong some where?

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

Hey can any one help me out here, getting WA on testcase 6 for Problem D submission

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

    Heh Solved it with new dp approach smirking check out this 263789195

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

      can u explain ur dp approach?

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

        hey,for every bit i I created a binary array, where arr[x] is set if xth elements ith bit is set,then did some dp over that array (now i don't really remember exactly what i did back then but ) here first my aim was to calculate just f(l,r) on for every l,r possible on that binary array so lets say there are count number of pairs with xor set.answer contribution would be (2^i)*count , where i is ith bit of array , after that slight modification would add r-l+1 factor as well (initially my dp state was something like counting pairs with set and unset pretty easy transition. form there i moved toward solution)

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

    I used a similar approach, check this once 276079653

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

Sorry for necroposting, but in problem C can anyone explain that why changing of indices of other characters (after deleting some character) does not effect the answer?

Thanks

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

    This part of the editorial makes it clear. So even if we delete the char and index, the number of ways remains the same.

    For example, let's consider that the string s=001100 and the chosen indices to erase are 1, 4 and 5. Then there are 3!=6 ways to choose the order of them:

    1, 4, 5; 1, 5, 4; 4, 1, 5; 4, 5, 1; 5, 1, 4; 5, 4, 1.