This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 dfs2(int u, int id) {
if(l[u]!=-1) return;
l[u] = id++;
for(int v : g[u]) dfs2(v,id+1);
}
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) g[i].clear();
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()>2) {
l[i] = 0;
int gid = 0;
for(int v : g[i]) dfs2(v,1+(gid++*1000));
return l;
}
fin(i,0,n) if(g[i].size()==1) { dfs2(i,0); break; }
return l;
}
int dir(int a, int b){
if(a==b) return 0;
return b>a?1:-1;
}
bool anc(int u, int v) {
while(v>=u) {
if(u==v) return 1;
v = (v-1)/2;
}
return 0;
}
int find_next_station(int s, int t, vi c) {
if(s==0) {
for(int v : c) if((v/1000)==(t/1000)) return v;
return c[0];
}
if((s/1000)==(t/1000)) {
for(int v : c) if(dir(s,v)==dir(s,t)) return v;
} else return *min_element(all(c));
return c[0];
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |