이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <algorithm>
//#include "IOI20_Stations.h"
//const int N = 1e5;
int cnt=0;
std::vector<int> labels;
/*
clarifications:
k == n-1
c is sorted
Debugging:
- Idea => Proof
- Code => Accepted
*/
std::vector<std::vector<int>> g;
void dfs(int node, int par) {
for (int ch : g[node]) {
if (ch != par) {
dfs(ch, node);
}
}
labels[node] = cnt++;
}
std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) {
/*
1. Construct adjacency list
2. Label every node with its finish time (ft)
*/
g.clear();
g.resize(n);
for (int i = 0; i < n - 1;i++) {
g[u[i]].push_back(v[i]);
g[v[i]].push_back(u[i]);
}
cnt = 0;
labels.clear();
labels.resize(n);
dfs(0, -1);
return labels;
}
/*
1. Now it's easy to find where to countinue the path
2. Tha path will be behined (i.e. the parent of current node), if the distinatin was greater than it
3. The path will be greater than or equal to any of the nighbours
4. If the distination was greater than or equals the node i, and less than any nighbour greater than i, then we need to go there
*/
int find_next_station(int s, int t, std::vector<int> c) {
int sz = c.size();
if (t >= s) return c[sz-1];
for (int i = 0; i < sz-1; i++) {
if (t <= c[i]) return c[i];
}
return c[sz - 2];
}
# | 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... |