Блог пользователя KING-SEN

Автор KING-SEN, история, 8 лет назад, По-английски

http://www.spoj.com/problems/HORRIBLE/ Hi everybody, I want to solve this problem with segment tree lazy propagation. I code it with segment tree lazy propagation but it gives me a wrong answer.I check it but I am unable to find any bug. Please anyone can help me to check my code and give me any solution for it.
code link: http://codepad.org/0LePV2tI

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

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

I guess this could be the problem

memset(ara, 0, n);
memset(lazy, 0, 3*n);
»
8 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Please recommend some good tutorials for segment tree and binary indexed tree?