Изменения рейтингов за последние раунды временно удалены. Скоро они будут возвращены. ×

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

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

I don't know how to do the last subtask, anyone have idea ?

  • Проголосовать: нравится
  • +23
  • Проголосовать: не нравится

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

Also interested

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

I think it's a good idea to put the problem link.

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

WLOG assume that $$$A_j < B_j$$$. Cost of walking is annoying so we can get rid of it by setting $$$[L_i, R_i]$$$ to $$$[L_i-i, R_i-i-1]$$$.

Now at each point we can either increase time or decrease it by paying $$$1$$$. Brute force solution would be trivial: don't change time for as long as possible.

Create a segment tree which will be able to answer the following query: Given a starting time $$$t$$$, find ending time and total cost to walk on a segment $$$[l, r]$$$.

We can get our answer for any $$$t$$$ by setting $$$t=L_l$$$ or $$$t=R_l$$$ depending on the direction our first move in time would be when starting at $$$t$$$.

All we need is a segment tree that for each node stores answer for the $$$2$$$ starting cases.

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

Auto comment: topic has been updated by that_bai_xa_hoi (previous revision, new revision, compare).