#include<bits/stdc++.h>
#include "stations.h"
#define ll long long
#define fi first
#define se second
#define pb push_back
using namespace std;
const int N=1009;
int la[N];
vector<int>v[N];int re=0;
void dfs(int x,int p)
{
la[x]=++re;
for(auto it:v[x])
{
if(it==p)continue;
dfs(it,x);
}
}
vector<int> label(int n, int k,vector<int> U, vector<int> V) {
vector<int> l(n);
for(int i=0;i<n-1;i++)
{
v[U[i]].pb(V[i]);
v[V[i]].pb(U[i]);
}
int root=0;
for(int i=0;i<n;i++)if(v[i].size()==1)root=i;
l[root]=0;
dfs(v[root][0],root);
for(int i=0;i<n;i++)l[i]=la[i];
memset(la,0,sizeof la);for(int i=0;i<n;i++)v[i].clear();
return l;
}
int find_next_station(int s, int t, std::vector<int> c) {
if(s<t)
{
return c[1];
}
return c[0];
}
/*
1
5 1000000
0 1
1 2
1 3
2 4
2
2 0 1
1 3 3
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
400 KB |
Invalid labels (values out of range). scenario=2, k=1000, vertex=41, label=1002 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
6 ms |
316 KB |
Invalid labels (values out of range). scenario=1, k=1000, vertex=0, label=1004 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
542 ms |
500 KB |
Wrong query response. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
864 ms |
400 KB |
Wrong query response. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
548 ms |
788 KB |
Wrong query response. |
2 |
Halted |
0 ms |
0 KB |
- |