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 "stations.h"
#include <vector>
using namespace std;
int sz;
vector<vector<int>> g;
vector<int> labels;
int cnt = 0;
void dfs(int v, int p)
{
int tin = cnt++;
for (int to : g[v])
{
if (to == p)
continue;
dfs(to, v);
}
int tout = cnt;
labels[v] = tin + 1000 * (tout - tin);
}
vector<int> label(int n, int k, vector<int> u, vector<int> v) {
labels = vector<int>(n);
sz = n;
g = vector<vector<int>>(n);
for (int i = 0; i < n - 1; i++)
{
g[u[i]].push_back(v[i]);
g[v[i]].push_back(u[i]);
}
dfs(0, -1);
return labels;
}
pair<int, int> calc(int x)
{
return {x % 1000, x / 1000 + x % 1000};
}
bool check(int a, int b)
{
pair<int, int> ap = calc(a), bp = calc(b);
return ap.first <= bp.first && ap.second >= bp.second;
}
int find_next_station(int s, int t, vector<int> c) {
if (!check(s, t))
{
for (int to : c)
{
if (check(to, s))
return to;
}
}
else
{
for (int to : c)
{
if (check(to, t))
return to;
}
}
}
/*
1
5 10
0 1
1 2
1 3
2 4
2
2 0 1
1 3 3
*/
Compilation message (stderr)
stations.cpp: In function 'int find_next_station(int, int, std::vector<int>)':
stations.cpp:67:1: warning: control reaches end of non-void function [-Wreturn-type]
67 | }
| ^
# | 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... |