# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
361951 | usuyus | Stations (IOI20_stations) | C++14 | 995 ms | 1352 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 "stations.h"
#include <bits/stdc++.h>
#define N 1005
using namespace std;
vector<int> tree[N];
int dfs(int nd, int par, int cur, bool pre, vector<int> &labels) {
if (pre) labels[nd] = cur++;
for (int child : tree[nd]) {
if (child == par) continue;
cur = dfs(child, nd, cur, !pre, labels);
}
if (!pre) labels[nd] = cur++;
return cur;
}
vector<int> label(int n, int k, vector<int> u, vector<int> v) {
for (int i=0; i<n; i++) tree[i].clear();
for (int i=0; i<u.size(); i++) {
tree[u[i]].push_back(v[i]);
tree[v[i]].push_back(u[i]);
}
vector<int> labels(n);
dfs(0, -1, 0, 0, labels);
return labels;
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |