이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "coprobber.h"
#include<bits/stdc++.h>
using namespace std;
vector<vector<int>> graph;
int start(int N, bool A[MAX_N][MAX_N])
{
graph.resize(N);
for(int i = 0; i < N; i++){
for(int j = 0; j < N; j++){
if(A[i][j]) graph[i].push_back(j);
}
}
return 0;
}
int cpos = 0;
bool dfs(int r, int v, int p){
if(v==r) return true;
for(auto i : graph[v]){
if(i!=p)
if(dfs(r, i, v)) return true;
}
return false;
}
int nextMove(int R)
{
for(auto i : graph[cpos]){
if(dfs(R, i, cpos)){
cpos = i;
return i;
}
}
return 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... |