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

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

1786A2 - Чередующаяся колода (сложная версия)

Problem author: KAN

Explanation
Code by KAN

1786B - Производство тортов

Problem author: KAN

Explanation
Code by KAN

1785A - Монстры (простая версия)

Problem author: tourist

Explanation
Code by tourist

1785B - Обмен буквами

Problem author: tourist

Explanation
Code by PavelKunyavskiy

1785C - Монстры (сложная версия)

Problem author: tourist

Explanation
Code by tourist

1785D - Деревянная ложка

Problem author: tourist

Explanation
Code by tourist

1785E - Бесконечная игра

Problem author: tourist

Explanation
Code by tourist

1785F - Минимумы или медианы

Problem author: tourist

Explanation
Code by tourist, O(n^2)
Code by tourist, O(n)
  • Проголосовать: нравится
  • +81
  • Проголосовать: не нравится

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

Thanks for the editorial,waiting from a long time.

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

Finally an editorial! After a long week and a half.

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

tourist!

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

Another approach for B

If we are shifting to left it means we are moving in negative direction If we are shifting to right it means we are moving in positive direction

We can try all possible values of shifting by binary search, and compare if we want to shift in positive and negative direction and reduce the search space on each try

https://mirror.codeforces.com/contest/1786/submission/238301378

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

    Why is it obvious that the ith cake should be below the ith dispenser ??It maybe that a cake's last part is below start of some dispenser and another cake is below the same dispenser ?@AshutoshChoudhary

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

hi tourist

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

help with B please? what goes wrong here?

appreciated. 262313860

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

Did anyone notice that the binomal in the the solution of F is wrong ?