cheran-senthil / PyRival

⚡ Competitive Programming Library
https://pyrival.readthedocs.io/
Apache License 2.0
1.17k stars 312 forks source link

Update LazySegmentTree.py #81

Closed bogoconic1 closed 1 year ago

bogoconic1 commented 1 year ago

https://codeforces.com/contest/1549/submission/186542539 (Runtime Error on Test 5) Size of self._lazy and self._data is too small, as seen in the runtime error submission (array index out of bounds) Changed size from (2 _size) to (4 _size)

https://codeforces.com/contest/1549/submission/186543644 (Updated submission ACs after increasing size)