| 8 | #define rc ((n << 1) | 1) |
| 9 | int t[4 * N], lazy[4 * N]; |
| 10 | ST() { |
| 11 | fill(t, t + 4 * N, -inf); |
| 12 | fill(lazy, lazy + 4 * N, 0); |
| 13 | } |
| 14 | inline void push(int n, int b, int e) { |
| 15 | if(lazy[n] == 0) return; |
| 16 | t[n] = t[n] + lazy[n]; |
nothing calls this directly
no outgoing calls
no test coverage detected