# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1246611 | em4ma2 | Cop and Robber (BOI14_coprobber) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
//#define int long long
const ll mod=998244353;
const int mxsz=5e2+4;
const ll inf = LLONG_MAX;
vector<int> adj[mxsz];
int start(int n,bool a[mxsz][mxsz]){
for (int i=0;i<n;i++){
for (int j=0;j<n;j++){
if (a[i][j]){
adj[i].pb(j);
}
}
}
return 0;
}
int nextMove(int x){
return x;
}