# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
386070 | cpp219 | Race (IOI11_race) | C++14 | 2 ms | 364 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 <bits/stdc++.h>
#define ll int
#define ld long double
#define fs first
#define sc second
using namespace std;
const ll N = 2e3 + 6;
const ll Log2 = 19;
const ll inf = 1e9 + 7;
typedef pair<ll,ll> LL;
vector<LL> g[N];
ll n,k,w[N],H[N][2],child[N],len[N],d[N],ans = inf,L[N];
bool Is_cent[N];
multiset<LL> All;
ll Find_cent(ll u,ll p,ll total){
for (auto i : g[u]){
ll v = i.fs,now = i.sc;
if (!Is_cent[v]&&v != p&&child[v]*2 >= total) return Find_cent(v,u,total);
}
Is_cent[u] = 1; return u;
}
void reDFS(ll u,ll p){
child[u] = 1;
for (auto i : g[u]){
ll v = i.fs,now = i.sc;
if (!Is_cent[v] && v != p){
len[v] = len[u] + now; d[v] = d[u] + 1;
reDFS(v,u); child[u] += child[v];
Compilation message (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |