# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
103266 | naoai | Wall (IOI14_wall) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "game.h"
#include <bits/stdc++.h>
using namespace std;
const int nmax = 1500;
static int n;
int ok[nmax + 1][nmax + 1];
int gr[nmax + 1], t[nmax + 1];
int findtata (int x) {
if (x == t[x]) return x;
return t[x] = findtata(t[x]);
}
void initialize(int N) {
n = N;
for (int i = 0; i < n; ++ i) {
for (int j = 0; j < n; ++ j) {
ok[i][j] = 1;
}
ok[i][i] = 0;
}
for (int i = 0; i < n; ++ i) {
t[i] = i;
gr[i] = 1;
}