이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "prison.h"
using namespace std;
#define pb push_back
#define ll long long
#define fi first
#define se second
std::vector<std::vector<int>> devise_strategy(int N) {
vector<vector<int>> tab(23,vector<int> (N+1,0));
int n=N;
tab[0][0]=0;
for (int i = 1; i < n+1; ++i)
{
if(i>=2*pow(3,7)){
tab[0][i]=3;
}else if(i>=pow(3,7)){
tab[0][i]=2;
}else{
tab[0][i]=1;
}
}
for (int i = 1; i <= 22; ++i)
{
int k=7-(i-1)/3;
tab[i][0]=(k%2 ? 1 : 0);
int m=(i-1)%3;
if(i==22) m++;
for (int j = 1; j < n+1; ++j)
{
int cnt=j;
for (int t = 7; t > k; --t)
{
while(cnt>=pow(3,t)) cnt-=pow(3,t);
}
int cur;
if(cnt>=2*pow(3,k)){
cur=2;
}else if(cnt>=pow(3,k)){
cur=1;
}else{
cur=0;
}
int nab=0;
while(cnt>=pow(3,k)) cnt-=pow(3,k);
if(cur>m) tab[i][j]=(k%2==1 ? -1 : -2);
else if(cur<m) tab[i][j]=(k%2==1 ? -2 : -1);
else if(k==0) tab[i][j]=22;
else {
if(cnt>=2*pow(3,k-1)) nab=2;
else if(cnt>=pow(3,k-1)) nab=1;
else nab=0;
tab[i][j]=((i-1)/3+1)*3+nab+1;
if(tab[i][j]==24) tab[i][j]=-1;
else if(tab[i][j]==22) tab[i][j]=-2;
else if(k==1) tab[i][j]=22;
}
}
}
return tab;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |