#include "prison.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<std::vector<int>> devise_strategy(int N) {
vector<vector<int>>ans(25,vector<int>(N + 1));
for (int i = 0;i<25;++i){
if (i == 0){
ans[i][0] = 0;
for (int j = 1;j<=N;++j){
ans[i][j] = 12;
}
}
else {
if (i > 12){
ans[i][0] = 1;
}
else ans[i][0] = 0;
for (int j = 1;j<=N;++j){
if (i > 12){
if (j & (1<<(25 - i))){
if (25 - i == 1){
if (j & 1){
ans[i][j] = -1;
}
else ans[i][j] = -2;
}
else{
ans[i][j] = (25 - i) - 1;
}
}
else{
ans[i][j] = -2;
}
}
else{
if (j & (1<<i)){
ans[i][j] = 25 - i;
}
else{
if (i == 1){
if (j & 1)ans[i][j] = -2;
else ans[i][j] = -1;
}
else ans[i][j] = i - 1;
}
}
}
}
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Strategy failed for N=2, A=1, B=2 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Strategy failed for N=2, A=1, B=2 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Strategy failed for N=3, A=1, B=2 |
2 |
Halted |
0 ms |
0 KB |
- |