# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
343841 | apostoldaniel854 | UFO (IZhO14_ufo) | C++14 | 971 ms | 160908 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define dbg(x) cerr << #x << " " << x << "\n"
using ll = long long;
const int MAX_N = 3e4;
struct BestSegTree {
vector <int> seg;
int n;
void init (int n) {
this->n = n;
seg.resize (1 + 4 * n);
}
void update (int node, int lb, int rb, int pos, int to_add) {
if (lb == rb) {
seg[node] += to_add;
return;
}
int mid = (lb + rb) / 2, left_node = node * 2, right_node = node * 2 + 1;
if (pos <= mid)
update (left_node, lb, mid, pos, to_add);
else
update (right_node, mid + 1, rb, pos, to_add);
seg[node] = max (seg[left_node], seg[right_node]);
}
int query (int node, int lb, int rb, int bound) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |