이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "stations.h"
#include <bits/stdc++.h>
using namespace std;
vector<int> label(int n, int k, vector<int> u, vector<int> v) {
vector<int> labels(n, 0);
iota(labels.begin(), labels.end(), 0);
return labels;
}
const int LIM=1000;
bool dfs(int v, int t){
if(v==t) return true;
if(v>=LIM) return false;
if(dfs(v*2+1, t)) return true;
return dfs(v*2+2, t);
}
int find_next_station(int s, int t, vector<int> c) {
for(int i=1; i<(int)c.size(); i++){
if(dfs(c[i], t)){
return c[i];
}
}
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... |