# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
853220 | serifefedartar | 원숭이와 사과 나무 (IZhO12_apple) | C++17 | 367 ms | 215948 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(0);cin.tie(0);
#define s second
#define f first
typedef long long ll;
const ll MOD = 1e9 + 7;
const ll LOGN = 20;
const ll MAXN = 2e5 + 5;
struct Node {
ll l, r, sum, lazy;
Node *ptrL, *ptrR;
Node(int a, int b) : l(a), r(b), ptrL(NULL), ptrR(NULL), sum(0), lazy(0) { };
void add() {
if (ptrL == NULL && l != r) {
int mid = (l + r) / 2;
ptrL = new Node(l, mid);
ptrR = new Node(mid+1, r);
}
}
void push() {
if (lazy) {
sum = r - l + 1;
if (l != r) {
add();
ptrL->lazy = 1;
ptrR->lazy = 1;
}
lazy = 0;
}
}
void update(int a, int b) {
push();
if (l > b || a > r)
return ;
if (a <= l && r <= b) {
lazy = 1;
push();
return ;
}
add();
ptrL->update(a, b);
ptrR->update(a, b);
sum = ptrL->sum + ptrR->sum;
}
ll query(int a, int b) {
push();
if (l > b || a > r)
return 0LL;
if (a <= l && r <= b)
return sum;
add();
return ptrL->query(a, b) + ptrR->query(a, b);
}
};
int main() {
fast
int M, D, X, Y;
cin >> M;
Node *root = new Node(1, 1e8);
int C = 0;
while (M--) {
cin >> D >> X >> Y;
X += C;
Y += C;
if (D == 1) {
C = root->query(X, Y);
cout << C << "\n";
} else
root->update(X, Y);
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |