# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
398894 | almothana05 | 경찰관과 강도 (BOI14_coprobber) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "coprobber.h"
#include<bits\stdc++.h>
#include<vector>
using namespace std;
int menge = 0 , jet = 0 , r = 0;
int cmp = 0 ;
bool done = 0;
vector<vector<int> >num ;
vector<vector<bool> > a;
vector<int >vis(500+10 , 0), comp;
int dfs(int x , int R){
cmp = 0;
if(x == R){
r = 1;
}
vis[x] = 1;
comp.push_back(x);
for(int i = 0 ; i < num[x].size() ; i++){
if(vis[i] == 0 ){
cmp++;
if( dfs(x , R) == -1){
return -1;
}
}
}
if(cmp == 0 && r == 1 ){
return -1;
}
comp.pop_back();
vis[x] = 0;
}
int start(int N, bool A[MAX_N][MAX_N])
{
for(int i = 0 ;i < N ; i++){
a.push_back(vector<bool>());
num.push_back(vector<int>());
for(int j = 0 ; j < N ; j++){
a[i].push_back(A[i][j]);
if(a[i][j] == 1){
num[i].push_back(j);
}
}
}
menge = N;
return 0;
}
int nextMove(int R)
{
if(R == jet){
return jet;
}
if(num[jet][R] == 1){
return R;
}
else{
if(done == 0){
dfs(jet , R);
reverse(comp.begin() , comp.end());
done = 1;
}
cmp = comp[comp.size() - 1];
comp.pop_back();
return cmp;
}
return jet;
}