# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
114633 | Shafin666 | Race (IOI11_race) | C++14 | 1704 ms | 48184 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>
#include "race.h"
#define mp make_pair
#define pb push_back
#define pii pair<int, int>
#define nyan "(=^・ω・^=)"
#define read_input freopen("in.txt","r", stdin)
#define print_output freopen("out.txt","w", stdout)
typedef long long ll;
typedef long double ld;
using namespace std;
const int maxn = 2e5+10;
const int inf = 1e6+13;
int sz[maxn], lev[maxn], dist[maxn];
int in[maxn], out[maxn], ver[maxn];
unordered_map<ll, int> M;
int idx = 1, n, k;
vector<pii> adj[maxn];
void getsz(int u, int par) {
ver[idx] = u; in[u] = idx++;
sz[u] = 1;
for(auto p : adj[u]) {
int v = p.first; ll w = p.second;
if(v == par) continue;
lev[v] = lev[u] + 1;
# | 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... |