# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
65311 | zubec | 마상시합 토너먼트 (IOI12_tournament) | C++14 | 202 ms | 43008 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 100100;
vector <int> g[N+N];
pair<int, int> pr[N+N];
int cnt, n, pref[N], id[N], up[N+N][20], deep[N+N];
int t[N*4], ob[N*4];
void push(int v, int l, int r){
if (ob[v] == 0)
return;
int mid = (l+r)>>1;
t[v+v] = (mid-l+1)*(ob[v]-1);
t[v+v+1] = (r-mid)*(ob[v]-1);
ob[v+v] = ob[v+v+1] = ob[v];
ob[v] = 0;
}
void update(int v, int l, int r, int tl, int tr, int x){
if (l > r || tl > r || l > tr)
return;
if (tl <= l && r <= tr){
t[v] = (r-l+1)*x;
ob[v] = x+1;
return;
컴파일 시 표준 에러 (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... |