# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
96998 | tugushka | 경주 (Race) (IOI11_race) | C++14 | 2077 ms | 36620 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "race.h"
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#define N 200005
using namespace std;
using pii = pair < int, int >;
map < int, int > x, y;
vector < vector < pair < int, int > > > to;
int n, k, sz[N], res = 1e9;
bool blocked[N];
int get_size(int u, int p){
sz[u] = 1;
for( pii v : to[u] ){
if( blocked[v.first] || v.first == p ) continue;
sz[u] += get_size( v.first, u );
}
return sz[u];
}
int get_center( int u, int p, int comp_size ){
for( pii v : to[u] ){
if( blocked[v.first] || v.first == p ) continue;
if( sz[v.first] > comp_size ) return get_center(v.first, u, comp_size);
}
return u;
}
# | 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... |