# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
130705 | dragonslayerit | 마상시합 토너먼트 (IOI12_tournament) | C++14 | 290 ms | 7796 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
std::vector<int> children[200005];
int N;
int st[200005];
int query(int a,int b){
int res=0;
for(a+=N-1,b+=N-1;a<b;a>>=1,b>>=1){
if(a&1) res=std::max(res,st[a++]);
if(b&1) res=std::max(res,st[--b]);
}
return res;
}
int size[200005];
int depth[200005];
int deep[200005];
int R;
void dfs1(int node){
size[node]=1;
if(node<N){
deep[node]=node;
}
for(int child:children[node]){
dfs1(child);
if(depth[child]+1>depth[node]){
depth[node]=depth[child]+1;
deep[node]=deep[child];
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |