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

Автор ayushrocker92, 10 лет назад, По-английски

Hi i want to know is it possible to calculative range minimum/maximum query with BIT?

If yes then how??

And is its code shorter than segment tree for RMQ??

please help as it would be easy to write short codes during contest .Thanx :)

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

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

    const int N = 1 << 17; // has to be power of 2 — this condition in your code is required only for non-commutative operations. And min is of course commutative. My recent submission with this approach 8125739 — AC.