# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1045169 | tosivanmak | 마상시합 토너먼트 (IOI12_tournament) | C++17 | 26 ms | 32080 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
struct node{
ll dep,id;
bool operator<(const node& n)const{
if(dep!=n.dep)return dep<n.dep;
return id>n.id;
}
};
struct SEG{
ll seg[400005],n;
void init(ll _n){
n=_n;
}
void build(ll l, ll r, ll id){
if(l==r){
seg[id]=1; return;
}
ll mid=(l+r)>>1;
build(l,mid,id*2),build(mid+1,r,id*2+1);seg[id]=seg[id*2]+seg[id*2+1];
}
void del(ll ul, ll l, ll r, ll id){
seg[id]--;
if(l==r){return;}
ll mid=(l+r)>>1;
if(ul<=mid)del(ul,l,mid,id*2);
else del(ul,mid+1,r,id*2+1);
}
컴파일 시 표준 에러 (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... |