# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
733514 | Trunkty | 경찰관과 강도 (BOI14_coprobber) | C++14 | 1 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
//#define int ll
#include "coprobber.h"
bool isgood[505][505][2]; // 0 - robber, 1 - cop
int cnt[505][505];
vector<tuple<int,int,int>> v;
int start(int n, bool arr[MAX_N][MAX_N]){
for(int i=0;i<n;i++){
isgood[i][i][0] = true;
isgood[i][i][1] = true;
v.push_back(make_tuple(i,i,0));
v.push_back(make_tuple(i,i,1));
for(int j=0;j<n;j++){
if(arr[i][j]){
cnt[i][0]++;
}
}
for(int j=1;j<n;j++){
cnt[i][j] = cnt[i][j-1];
}
}
for(int i=0;i<v.size();i++){
int a = get<0>(v[i]), b = get<1>(v[i]), c = get<2>(v[i]);
if(c==0){
for(int j=0;j<n;j++){
if(arr[b][j]){
if(!isgood[a][j][1]){
isgood[a][j][1] = true;
v.push_back(make_tuple(a,j,1));
}
}
}
}
else{
for(int j=0;j<n;j++){
if(arr[a][j]){
if(!isgood[j][b][0]){
cnt[j][b]--;
if(cnt[j][b]==0){
isgood[j][b][0] = true;
v.push_back(make_tuple(j,b,0));
}
}
}
}
}
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
if(!isgood[i][j][0] or !isgood[i][j][1]){
return -1;
}
}
}
return 1;
}
int nextMove(int r){
return -1;
}
컴파일 시 표준 에러 (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... |