Submission #954975

# Submission time Handle Problem Language Result Execution time Memory
954975 2024-03-29T03:49:57 Z hanifchdn Monkey and Apple-trees (IZhO12_apple) C++17
100 / 100
214 ms 127448 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define ull unsigned long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define fi first
#define se second
 
const int N = 1e5 + 5;
 
struct node {
	int sum, lazy, l, r;
	node() : sum(0), lazy(0), l(-1), r(-1) {}
};
 
node st[80 * N];
int cnt = 1;
 
void push(int x, int tl, int tr) {
	if (!st[x].lazy) return;
	st[x].sum = tr - tl + 1;
	if (tl == tr) {
		st[x].lazy = 0;
		return;
	}
	if (st[x].l == -1) {
		st[x].l = ++cnt;
		st[x].r = ++cnt;
	}
	st[st[x].l].lazy = st[x].lazy;
	st[st[x].r].lazy = st[x].lazy;
	st[x].lazy = 0;
}
 
void update(int x, int tl, int tr, int l, int r) {
	push(x, tl, tr);
	int tm = (tl + tr) / 2;
	if (tr < l or r < tl) return;
	if (l <= tl and tr <= r) {
		st[x].lazy = 1;
		push(x, tl, tr);
		return;
	}
	if (st[x].l == -1) {
		st[x].l = ++cnt;
		st[x].r = ++cnt;
	}
	update(st[x].l, tl, tm, l, r);
	update(st[x].r, tm + 1, tr, l, r);
	st[x].sum = st[st[x].l].sum + st[st[x].r].sum;
}
 
int get(int x, int tl, int tr, int l, int r) {
	if (tr < l or r < tl) return 0;
	push(x, tl, tr);
	int tm = (tl + tr) / 2;
	if (l <= tl and tr <= r) return st[x].sum;
	if (st[x].l == -1) {
		st[x].l = ++cnt;
		st[x].r = ++cnt;
	}
	return get(st[x].l, tl, tm, l, r) + get(st[x].r, tm + 1, tr, l, r);
}
 
int main() { 
    ios_base::sync_with_stdio(false); cin.tie(NULL);
    int q;
    cin >> q;
    int c = 0;
    while (q--) {
    	int d, x, y;
    	cin >> d >> x >> y;
    	if (d == 1) {
    		c = get(1, 1, 1e9, x + c, y + c);
    		cout << c << "\n";
    	}
    	else {
    		update(1, 1, 1e9, x + c, y + c);
    	}
    }	
}  
# Verdict Execution time Memory Grader output
1 Correct 34 ms 125520 KB Output is correct
2 Correct 35 ms 125524 KB Output is correct
3 Correct 38 ms 125524 KB Output is correct
4 Correct 42 ms 125604 KB Output is correct
5 Correct 48 ms 125492 KB Output is correct
6 Correct 50 ms 125520 KB Output is correct
7 Correct 43 ms 125520 KB Output is correct
8 Correct 96 ms 125996 KB Output is correct
9 Correct 185 ms 125872 KB Output is correct
10 Correct 188 ms 126144 KB Output is correct
11 Correct 173 ms 126032 KB Output is correct
12 Correct 173 ms 126032 KB Output is correct
13 Correct 168 ms 126372 KB Output is correct
14 Correct 160 ms 126036 KB Output is correct
15 Correct 210 ms 126032 KB Output is correct
16 Correct 213 ms 127448 KB Output is correct
17 Correct 169 ms 127316 KB Output is correct
18 Correct 158 ms 127288 KB Output is correct
19 Correct 214 ms 127284 KB Output is correct
20 Correct 213 ms 127316 KB Output is correct