#include "stations.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long lo;
typedef pair< lo,lo > PII;
#define fi first
#define se second
#define mp make_pair
#define endl "\n"
#define pb push_back
#define fio() ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define FOR for(int i=1;i<=n;i++)
#define mid ((start+end)/2)
#define ort ((bas+son)/2)
const lo inf = 1000000000000000000;
const lo KOK = 100000;
const lo LOG = 30;
const lo li = 1005;
const lo mod = 1000000007;
vector<int> vec[li],vv;
inline void dfs(int node,int ata){
//~ cout<<node<<endl;
vv.pb(node);
for(auto go:vec[node]){
if(go==ata)continue;
dfs(go,node);
}
}
std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> vvv) {
std::vector<int> labels(n);
for(int i=0;i<n-1;i++){
vec[u[i]].pb(vvv[i]);
vec[vvv[i]].pb(u[i]);
}
int ind=0;
for(int i=0;i<n;i++){
if((int)vec[i].size()==1)ind=i;
}
//~ cout<<ind<<endl;
dfs(ind,-1);
//~ for(auto go:vv)printf("%d **\n",go);
for (int i = 0; i < n; i++) {
//~ cout<<vv[i]<<endl;
labels[vv[i]] = i;
}
return labels;
}
int find_next_station(int s, int t, std::vector<int> c) {
//~ cout<<s<<" :: "<<t<<endl;
if(s==t)return s;
if(t>s)return c[1];
else return c[0];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2069 ms |
2097156 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3116 ms |
1051092 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2122 ms |
2097156 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1025 ms |
400 KB |
Wrong query response. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3158 ms |
1711224 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |