# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
95097 | Alexa2001 | Race (IOI11_race) | C++17 | 1202 ms | 56740 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"
#include <bits/stdc++.h>
using namespace std;
const int Nmax = 2e5 + 5, inf = 1e9;
int w[Nmax], best[10 * Nmax], All, K;
bool used[Nmax];
vector<int> v[Nmax], c[Nmax];
void dfs(int node, int dad = -1)
{
w[node] = 1;
for(auto it : v[node])
if(!used[it] && it != dad)
{
dfs(it, node);
w[node] += w[it];
}
}
pair<int,int> centroid(int node, int dad = -1)
{
int act = All - w[node];
pair<int,int> ans = {All+1, All};
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... |