Codeforces 268D
6817 단어 dp
#include
#include
#include
using namespace std;
const int mod=1e9+9;
typedef __int64 LL;
LL dp[1010][2][31][31][31];
void fm(LL &x){
if(x>mod)x-=mod;
}
int main(){
#ifdef DouBi
freopen("in.cpp","r",stdin);
#endif // DouBi
int n,h;while(scanf("%d%d",&n,&h)!=EOF){
memset(dp,0,sizeof(dp));
dp[0][0][0][0][0]=1;
LL val;
for(int i=0;ifor(int a=0;a<=1;a++){
for(int b=0;b<=h;b++){
for(int c=0;c<=h;c++){
for(int d=0;d<=h;d++)if(val=dp[i][a][b][c][d]){
dp[i+1][a][b+11:h][c+11:h][d+11:h]+=dp[i][a][b][c][d]; fm(dp[i+1][a][b+11:h][c+11:h][d+11:h]);
dp[i+1][b+1<=h?0:1][c+11:h][d+11:h][a?h:1]+=dp[i][a][b][c][d];fm(dp[i+1][b+1<=h?0:1][c+11:h][d+11:h][a?h:1]);
dp[i+1][c+1<=h?0:1][d+11:h][a?h:1][b+11:h]+=dp[i][a][b][c][d];fm(dp[i+1][c+1<=h?0:1][d+11:h][a?h:1][b+11:h]);
dp[i+1][d+1<=h?0:1][a?h:1][b+11:h][c+11:h]+=dp[i][a][b][c][d];fm(dp[i+1][d+1<=h?0:1][a?h:1][b+11:h][c+11:h]);
}
}
}
}
}
//printf("%I64d
",dp[1][0][1][1][1]);
LL ans=0;
for(int a=0;a<=1;a++){
for(int b=0;b<=h;b++){
for(int c=0;c<=h;c++){
for(int d=0;d<=h;d++){
if(!a||b//if(n==2&&dp[n][a][b][c][d])printf("%d %d %d %d %I64d
",a,b,c,d,dp[n][a][b][c][d]);
ans+=dp[n][a][b][c][d];fm(ans);
}
}
}
}
}
printf("%I64d
",ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【경쟁 프로 전형적인 90문】008의 해설(python)의 해설 기사입니다. 해설의 이미지를 봐도 모르는 (이해력이 부족한) 것이 많이 있었으므로, 나중에 다시 풀었을 때에 확인할 수 있도록 정리했습니다. ※순차적으로, 모든 문제의 해설 기사를 들어갈 예정입니다. 문자열...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.