#include <bits/stdc++.h>
using namespace std;
#include "stations.h"
#define fin(i,s,n) for(auto i = s; i < n; ++i)
#define fine(i,s,n) for(auto i = s; i <= n; ++i)
#define x first
#define y second
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define eb emplace_back
using ii = pair<int,int>;
using vi = vector<int>;
using vii = vector<ii>;
template<class T> ostream& operator<<(ostream& os, vector<T> v) {
if(v.empty()) return os << "[]";
os << '[' << v[0];
fin(i,1,int(v.size())) os << ',' << v[i];
return os << ']';
}
const int maxn = 1005;
vi l;
int lid = 0;
vi g[maxn];
void dfs(int u) {
if(l[u]!=-1) return;
l[u] = lid++;
for(int v : g[u]) dfs(v);
}
vi label(int n, int k, vi u, vi v) {
l = vi(n,-1),lid = 0;
fin(i,0,n-1) g[u[i]].pb(v[i]),g[v[i]].pb(u[i]);
fin(i,0,n) if(g[i].size()==1) { dfs(i); break; }
return l;
}
int dir(int a, int b){
if(a==b) return 0;
return b>a?1:-1;
}
int find_next_station(int s, int t, std::vector<int> c) {
for(int v : c) if(dir(s,v)==dir(s,t)) return v;
return c[0];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
436 KB |
Invalid labels (values out of range). scenario=1, k=1000, vertex=0, label=-1 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
432 KB |
Invalid labels (values out of range). scenario=1, k=1000, vertex=0, label=-1 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
456 KB |
Invalid labels (values out of range). scenario=2, k=1000000, vertex=0, label=-1 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
200 KB |
Invalid labels (values out of range). scenario=1, k=1000000000, vertex=0, label=-1 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
448 KB |
Invalid labels (values out of range). scenario=2, k=1000000000, vertex=0, label=-1 |
2 |
Halted |
0 ms |
0 KB |
- |