#include "stations.h"
#include <vector>
std::vector<std::vector<int>> G;
std::vector<bool> visited;
std::vector<int> labels;
int time = 0;
void DFS(int node = 0) {
visited[node] = true;
labels[node] += (time++) * 2000;
for (int v : G[node])
if (!visited[v])
DFS(v);
labels[node] += time++;
}
std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) {
G.resize(n);
visited.resize(n);
labels.resize(n);
for (int i = 0; i < n - 1; i++) {
G[u[i]].push_back(v[i]);
G[v[i]].push_back(u[i]);
}
for (int i = 0; i < n; i++)
if (!visited[i])
DFS();
return labels;
}
int find_next_station(int s, int t, std::vector<int> c) {
for (int node : c)
if (node / 2000 < t / 2000 && t / 2000 < node % 2000 && node / 2000 > s / 2000 && node % 2000 < s % 2000)
return node;
for (int node : c)
if (node / 2000 < s / 2000 && node % 2000 > s % 2000)
return node;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
504 KB |
Invalid labels (values out of range). scenario=0, k=1000, vertex=1, label=14014 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
504 KB |
Invalid labels (values out of range). scenario=0, k=1000, vertex=0, label=1991 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
640 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
976 ms |
640 KB |
Wrong query response. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
512 KB |
Invalid labels (values out of range). scenario=1, k=1000000000, vertex=0, label=1788034885 |
2 |
Halted |
0 ms |
0 KB |
- |