# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
885349 | Koyote | 운세 보기 2 (JOI14_fortune_telling2) | C++11 | 615 ms | 222580 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define all(x) x.begin(), x.end()
#define sz(x) (int)x.size()
// Persistent Segment Tree
struct node {
node *l, *r;
int val;
node() : l(0), r(0), val(0) {}
node(int _v) : l(0), r(0), val(_v) {}
node(node *_l, node *_r) : l(_l), r(_r), val(l->val + r->val) {}
void extend() {
if (!l) l = new node();
if (!r) r = new node();
}
};
node* update(node *cur, int p, int v, int l, int r) {
if (l == r) return new node(cur->val + v);
cur->extend();
int mid = (l + r) >> 1;
if (p <= mid) return new node(update(cur->l, p, v, l, mid), cur->r);
else return new node(cur->l, update(cur->r, p, v, mid + 1, r));
}
int query(node *cur, int qs, int qe, int l, int r) {
if (r < qs || qe < l) return 0;
if (qs <= l && r <= qe) return cur->val;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |