# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
133495 | KieranHorgan | 경주 (Race) (IOI11_race) | C++17 | 8 ms | 5112 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "race.h"
#include <bits/stdc++.h>
using namespace std;
#define ing long long
int n, k;
vector<pair<int,int>> AdjList[200005];
bitset<200005> marked;
int sz[200005];
int getSz(int u, int p) {
sz[u] = 1;
for(auto v: AdjList[u]) {
if(v.first==p) continue;
if(marked[v.first]) continue;
sz[u] += getSz(v.first, u);
}
return sz[u];
}
int getCentroid(int u, int p, int compSz) {
if(sz[u]*2 < compSz)
return -1;
for(auto v: AdjList[u]) {
if(v.first==p) continue;
if(marked[v.first]) continue;
if(sz[v.first]*2 > compSz)
return getCentroid(v.first, u, compSz);
# | 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... |