이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prison.h"
#include <bits/stdc++.h>
using namespace std;
const int X = 23;
const int M = 8;
int p[M];
int check(int x, int k) {
return ((x / p[k]) % 3);
}
vector<vector<int>> devise_strategy(int N) {
p[0] = 1;
for (int i = 1; i < M; ++i) p[i] = p[i - 1] * 3;
vector<vector<int>> ret(X, vector<int> (N + 1));
ret[0][0] = 0;
for (int i = 1; i <= N; ++i) {
ret[0][i] = 7 * 3 - 1 + check(i, 7);
}
for (int i = 1; i < X; ++i) {
int bit = (i + 1) / 3;
int state = (i + 1) % 3;
if (bit == 0) {
state = 1;
}
if (bit % 2) {
ret[i][0] = 1;//identify B
for (int j = 1; j <= N; ++j) {
if (state < check(j, bit)) {
ret[i][j] = -1;
} else if (state > check(j, bit)) {
ret[i][j] = -2;
} else {
if (bit > 1) {
ret[i][j] = (bit - 1) * 3 - 1 + check(j, bit - 1);
} else {
int nxState = check(j, bit - 1);
if (nxState == 2) {//B is bigger
ret[i][j] = -1;
} else if (nxState == 0) {
ret[i][j] = -2;
} else {
ret[i][j] = 1;
}
}
}
}
} else {
ret[i][0] = 0;
for (int j = 1; j <= N; ++j) {
if (state < check(j, bit)) {
ret[i][j] = -2;
} else if (state > check(j, bit)) {
ret[i][j] = -1;
} else if (bit > 0) {
ret[i][j] = (bit - 1) * 3 - 1 + check(j, bit - 1);
}
}
}
}
return ret;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |