# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1053206 | user736482 | 경찰관과 강도 (BOI14_coprobber) | C++17 | 0 ms | 344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include<coprobber.h>
using namespace std;
vector<int> sasiad[507];
int akpos;
int start(int n,bool a[][500]){
for(int i=0;i<n;i++){
for(int j=i+1;j<n;j++){
if(a[i][j]){
sasiad[i].push_back(j);
sasiad[j].push_back(i);
}
}
}
return 0;
}
int nextMove(int r){
bool odw[507];
int pop[507];
for(int i=0;i<507;i++)
odw[i]=0;
odw[akpos]=1;
pop[akpos]=akpos;
queue<int>q;
q.push(akpos);
while(!q.empty()){
int pom=q.front();
q.pop();
for(int i=0;i<sasiad[pom].size();i++){
if(!odw[sasiad[pom][i]]){
odw[sasiad[pom][i]]=1;
pop[sasiad[pom][i]]=pom;
q.push(sasiad[pom][i]);
}
}
}
while(pop[r]!=akpos)
r=pop[r];
return r;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |