# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
97754 | jhnah917 | 트리 (KOI16_tree) | C++14 | 609 ms | 36576 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int, int> p;
template <typename T>
class SegTree{
private:
T tree[808080];
int lim;
function<T(const T a, const T b)> f;
public:
void init(int n, function<T(const T a, const T b)> func){
f = func;
for(lim = 1; lim <= n; lim <<= 1);
}
void update(int x, T v){
x += lim;
tree[x] = v;
while(x > 1){
x >>= 1;
tree[x] = f(tree[2*x], tree[2*x+1]);
}
}
T query(int s, int e){
s += lim;
e += lim;
T ret = 1;
while(s < e){
if(s%2 == 1) ret = f(ret, tree[s++]);
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |