# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
24907 | khsoo01 | 스파이 (JOI13_spy) | C++11 | 286 ms | 23176 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int n, m, ans[2005];
struct query {int s, e, x;};
vector<query> swp[2005];
struct tree {
int rt, s[2005], e[2005], inv[2005], cc;
vector<int> adj[2005];
void renum (int cur) {
s[cur] = ++cc;
inv[cc] = cur;
for(auto &nxt : adj[cur]) {
renum(nxt);
}
e[cur] = cc;
}
} t1, t2;
struct segtree {
int val[10005], lim;
void init () {
for(lim=1;lim<=n;lim<<=1);
}
void update (int S, int E, int X) {
S += lim; E += lim;
while(S <= E) {
if(S % 2 == 1) val[S++] += X;
컴파일 시 표준 에러 (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... |