# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1056300 | noyancanturk | 죄수들의 도전 (IOI22_prison) | C++17 | 6 ms | 1232 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prison.h"
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
vector<vector<int>>devise_strategy(int N) {
int indexes[13][2];
int ind=1;
for(int i=12;1<i;i--){
indexes[i][0]=ind++;
indexes[i][1]=ind++;
}
vector<vector<int>>res(24);
ind=12;
int bag=0;
for(int i=0;i<21;i++){
if(i&1){
ind--;
bag=!bag;
}
res[i]=vector<int>(N+1);
res[i][0]=bag;
int mask=(1<<ind+1)-1;
for(int j=1;j<=N;j++){
if(i&&i==indexes[ind+1][0]&&(j&(1<<ind+1))){
if(bag){
res[i][j]=-1;
}else{
res[i][j]=-2;
}
}else if(i&&i==indexes[ind+1][1]&&!(j&(1<<ind+1))){
if(bag){
res[i][j]=-2;
}else{
res[i][j]=-1;
}
}else if((j&mask)==mask){
if(bag){
res[i][j]=-1;
}else{
res[i][j]=-2;
}
}else if((j&mask)==0){
if(bag){
res[i][j]=-2;
}else{
res[i][j]=-1;
}
}else{
res[i][j]=indexes[ind][(j>>ind)&1];
}
}
}
for(int i=21;i<23;i++){
if(i&1){
ind--;
bag=!bag;
}
res[i]=vector<int>(N+1);
res[i][0]=bag;
int mask=(1<<ind+1)-1;
assert(mask==3);
for(int j=1;j<=N;j++){
if(i&&i==indexes[ind+1][0]&&(j&(1<<ind+1))){
if(bag){
res[i][j]=-1;
}else{
res[i][j]=-2;
}
}else if(i&&i==indexes[ind+1][1]&&!(j&(1<<ind+1))){
if(bag){
res[i][j]=-2;
}else{
res[i][j]=-1;
}
}else if((j&mask)==mask){
if(bag){
res[i][j]=-1;
}else{
res[i][j]=-2;
}
}else if((j&mask)==0){
if(bag){
res[i][j]=-2;
}else{
res[i][j]=-1;
}
}else{
res[i][j]=23;
}
}
}
int i=23;
bag=!bag;
res[i]=vector<int>(N+1);
res[i][0]=bag;
int mask=(1<<ind+1)-1;
for(int j=1;j<=N;j++){
if(2<=(j&3)){
if(bag){
res[i][j]=-1;
}else{
res[i][j]=-2;
}
}else{
if(bag){
res[i][j]=-2;
}else{
res[i][j]=-1;
}
}
}
/*
for(int i=0;i<=23;i++){
for(int j=0;j<=N;j++){
cerr<<res[i][j]<<" ";
}cerr<<"\n";
}
*/
return res;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |