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

Автор farukshin, история, 3 года назад, По-английски

Can't figure out how to implement Set operation.

Everything is clear with the operations Add, Sum, Min, Reverse, Revolve, Insert, Delete

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

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

I am little confused about your query , by set operations do u mean union, intersection operations or normal unique value or just sorted nature or both sorted and unique.
Anyways see if this helps
https://mirror.codeforces.com/blog/entry/46507

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

why do you care?

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

Just split the treap around the value to be removed, insert a new treap with the new value and merge the three treaps.