# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
708219 | happypotato | Memory 2 (JOI16_memory2) | C++17 | 1 ms | 372 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 "Memory2_lib.h"
#include <bits/stdc++.h>
using namespace std;
int buff[101][101];
int ans[101];
int ask(int x, int y) {
if (buff[x][y] != -1) return buff[x][y];
return buff[x][y] = buff[y][x] = Flip(x, y);
}
int add(vector<int> &v) {
for (int i = 0; i < 4; i++) {
int cnt = 0;
for (int j = 0; j < 4; j++) {
if (i == j) continue;
cnt += (ask(v[i], v[j]) == ask(v[i], (i == 0 ? v[1] : v[0])));
}
if (cnt == 3) {
ans[v[i]] = ask(v[i], (i == 0 ? v[1] : v[0]));
return i;
}
}
return -1;
}
void Solve(int T, int n){
for (int i = 0; i < 2 * n; i++) {
for (int j = 0; j < 2 * n; j++) {
buff[i][j] = -1;
}
}
vector<int> v = {0, 1, 2, 3};
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |