Submission #613256

#TimeUsernameProblemLanguageResultExecution timeMemory
613256amunduzbaevCop and Robber (BOI14_coprobber)C++17
0 / 100
1 ms1232 KiB
#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 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(par[i][j] == -1){
					par[i][j] = u, q.push(j);
				}
			}
		}
	}
	v = 1;
	return 1;
}

int nextMove(int R){
	assert(v != R);
	return par[R][v];
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...