| 10 | void update(ll v) { x = v; } |
| 11 | void range_update(ll v) { lazy = v; } |
| 12 | void apply() { x += lazy; lazy = 0; } |
| 13 | void push(node &u) { u.lazy += lazy; } }; |
| 14 | #endif |
| 15 | // vim: cc=60 ts=2 sts=2 sw=2: |
nothing calls this directly
no outgoing calls
no test coverage detected