답안 #613264

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
613264 2022-07-30T04:14:13 Z amunduzbaev 경찰관과 강도 (BOI14_coprobber) C++17
0 / 100
2 ms 1308 KB
#include "coprobber.h"
#include "bits/stdc++.h"
using namespace std;
#ifndef EVAL
#include "grader.cpp"
#endif

const int M = 505;
int par[M][M], v;
int used[M][M];

int start(int n, bool a[MAX_N][MAX_N]){
	memset(par, -1, sizeof par);
	for(int i=0;i<n;i++){
		queue<int> q; q.push(i);
		par[i][i] = i;
		while(!q.empty()){
			int u = q.front(); q.pop();
			for(int j=0;j<n;j++){
				if(a[u][j] && par[i][j] == -1){
					par[i][j] = u, q.push(j);
				}
			}
		}
	}
	v = 1;
	return 1;
}

int nextMove(int R){
	if(used[v][R]){
		exit(0);
	} else {
		used[v][R] = 1;
	}
	return par[R][v];
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1232 KB Output is correct
2 Correct 1 ms 1232 KB Output is correct
3 Failed 1 ms 1232 KB HACKED
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 1232 KB nextMove() returned a value that is either outside 0..N-1 or the new cop position is not a neighbour to the previous one
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1232 KB Output is correct
2 Correct 1 ms 1232 KB Output is correct
3 Failed 2 ms 1308 KB HACKED
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 1232 KB Output is correct
2 Correct 1 ms 1232 KB Output is correct
3 Failed 1 ms 1232 KB HACKED
4 Halted 0 ms 0 KB -