#include <bits/stdc++.h>
#include "stations.h"
#define all(x) x.begin(),x.end()
using namespace std;
vector <int> edges[1005];
void dfs(int x,int depth,int par,vector <int> &res)
{
static int dfn=0;
if(depth & 1)
{
res[x]=dfn++;
for(auto u:edges[x])
{
if(u==par) continue;
dfs(u,depth+1,x,res);
}
}
else
{
for(auto u:edges[x])
{
if(u==par) continue;
dfs(u,depth+1,x,res);
}
res[x]=dfn++;
}
}
vector <int> label(int n,int k,vector <int> _ea,vector <int> _eb)
{
vector <int> res;
res.resize(n);
for(int i=0;i<n-1;i++)
{
edges[_ea[i]].push_back(_eb[i]);
edges[_eb[i]].push_back(_ea[i]);
}
dfs(0,0,-1,res);
return res;
}
int find_next_station(int s,int t,vector <int> c)
{
if(s>c[0]) // ºó¸ù
{
sort(all(c));
int par=*c.begin();
c.erase(c.begin());
if(c.empty()) return par;
if(t<c.front() || t>=s) return par;
reverse(all(c));
for(auto x:c)
{
if(t>=x) return x;
}
}
else // Ïȸù
{
sort(all(c));
int par=*(--c.end());
c.erase(--c.end());
if(c.empty()) return par;
if(t>c.back() || t<=s) return par;
for(auto x:c)
{
if(t<=x) return x;
}
}
// assert(false);
return -1;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1707 ms |
2097156 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
7 ms |
768 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1398 ms |
2097156 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
915 ms |
876 KB |
Output is correct |
2 |
Runtime error |
1166 ms |
2097156 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
2372 ms |
2097156 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |