# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
853514 | mdobric | 경찰관과 강도 (BOI14_coprobber) | C++11 | 511 ms | 10012 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define MAX_N 500
vector <int> v[505];
int dp[505][505][2];
int brojac[505][505];
int ans;
queue <pair <int, int> > q;
queue <int> red;
int potez[505][505];
int start(int N, bool A[MAX_N][MAX_N]) {
for (int i = 0; i < N; i++){
for (int j = 0; j < N; j++){
if (A[i][j] == true){
v[i].push_back(j);
}
dp[i][j][0] = -1;
dp[i][j][1] = -1;
}
}
for (int i = 0; i < N; i++){
dp[i][i][0] = 2;
dp[i][i][1] = 2;
q.push(make_pair(i, i));
red.push(0);
q.push(make_pair(i, i));
red.push(1);
}
while (!q.empty()){
int x = q.front().first;
int y = q.front().second;
int r = red.front();
q.pop();
red.pop();
if (dp[x][y][r] == 2 and r == 1){
for (int i = 0; i < v[x].size(); i++){
if (dp[v[x][i]][y][0] == -1){
dp[v[x][i]][y][0] = 2;
potez[v[x][i]][y] = x;
q.push(make_pair(v[x][i], y));
red.push(0);
}
}
if (dp[x][y][0] == -1){
dp[x][y][0] = 2;
potez[x][y] = x;
q.push(make_pair(x, y));
red.push(0);
}
}
else
if (dp[x][y][r] == 2 and r == 0){
for (int i = 0; i < v[y].size(); i++){
brojac[x][v[y][i]]++;
if (brojac[x][v[y][i]] == v[v[y][i]].size() and dp[x][v[y][i]][1] == -1){
dp[x][v[y][i]][1] = 2;
q.push(make_pair(x, v[y][i]));
red.push(1);
}
}
}
}
for (int i = 0; i < N; i++){
for (int j = 0; j < N; j++){
if (dp[i][j][0] == -1){
dp[i][j][0] = 1;
}
if (dp[i][j][1] == -1){
dp[i][j][1] = 1;
}
}
}
ans = -1;
for (int i = 0; i < N; i++){
int brojac = 0;
for (int j = 0; j < N; j++){
if (dp[i][j][0] == 2){
brojac++;
}
}
if (brojac == N){
ans = i;
}
}
return ans;
}
int nextMove(int R) {
ans = potez[ans][R];
return ans;
}
/*
int main (void){
return 0;
}
*/
컴파일 시 표준 에러 (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... |