# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
627253 | haojiandan | 죄수들의 도전 (IOI22_prison) | C++17 | 6 ms | 672 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prison.h"
#include <bits/stdc++.h>
using namespace std;
int bel[5010];
vector<vector<int>> devise_strategy(int n) {
vector<vector<int> > res(22,vector<int>(n+1));
for (int I=0;I<7;I++) {
int L=I*3,R=L+2;
for (int i=L;i<=R;i++) res[i][0]=I&1;
int A=-1,B=-2; if (I&1) swap(A,B);
for (int i=L;i<=R;i++) {
int l=-1,r=-1;
for (int j=1;j<=n;j++) {
if (bel[j]<i) res[i][j]=A;
else if (bel[j]>i) res[i][j]=B;
else {
if (l==-1) l=j; r=j;
}
}
if (l!=-1) {
res[i][l]=A,res[i][r]=B;
int p=R,len=(r-1-l+2)/3;
for (int k=l+1;k<r;k++) {
if ((k-l-1)%len==0) p++;
res[i][k]=min(p,21);
}
}
}
for (int i=1;i<=n;i++) if (bel[i]>=L&&bel[i]<=R) { bel[i]=res[bel[i]][i]; if (bel[i]==B) bel[i]=1e9; }
}
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... |