結果
問題 | No.997 Jumping Kangaroo |
ユーザー | kotatsugame |
提出日時 | 2020-02-21 22:44:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,658 bytes |
コンパイル時間 | 724 ms |
コンパイル使用メモリ | 70,908 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-10-08 22:21:57 |
合計ジャッジ時間 | 14,151 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
9,088 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1,951 ms
5,248 KB |
testcase_03 | AC | 9 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | AC | 8 ms
5,248 KB |
testcase_07 | AC | 6 ms
5,248 KB |
testcase_08 | AC | 7 ms
5,248 KB |
testcase_09 | AC | 9 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 218 ms
5,248 KB |
testcase_14 | AC | 1,091 ms
5,248 KB |
testcase_15 | AC | 109 ms
5,248 KB |
testcase_16 | TLE | - |
testcase_17 | AC | 5 ms
5,248 KB |
testcase_18 | AC | 920 ms
5,248 KB |
testcase_19 | AC | 168 ms
5,248 KB |
testcase_20 | AC | 1,425 ms
5,248 KB |
testcase_21 | AC | 9 ms
5,248 KB |
testcase_22 | AC | 1,408 ms
5,248 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
コンパイルメッセージ
main.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 10 | main() | ^~~~
ソースコード
#pragma GCC optimize ("O3") #include<iostream> using namespace std; int W,N; long K; int A[99]; long mod=1e9+7,D[160][160]; long X[2][160]; long E[160][160],tmp[160][160]; main() { cin>>N>>W>>K; for(int i=0;i<N;i++)cin>>A[i]; for(int k=0;k<2;k++)for(int i=0;i<2*W;i++) { for(int j=0;j<2;j++)for(int l=0;l<4*W;l++)X[j][l]=0; X[k][i]=1; for(int j=i;j<2*W;j++)for(int l=0;l<2;l++) { for(int I=0;I<N;I++) { if(j+A[I]<4*W) { int nl=l; nl+=(j+A[I])/W-j/W; if((j+A[I])%W==0) { if(nl<=2)nl=0; else continue; } if(nl<=1)(X[nl][j+A[I]]+=X[l][j])%=mod; } } } for(int j=0;j<2;j++)for(int l=0;l<2*W;l++) { D[j*2*W+l][k*2*W+i]=X[j][l+2*W]; } } for(int i=0;i<4*W;i++)E[i][i]=1; long KK=K/2; while(KK>0) { if(KK&1) { for(int i=0;i<4*W;i++)for(int j=0;j<4*W;j++)tmp[i][j]=0; for(int i=0;i<4*W;i++)for(int j=0;j<4*W;j++)for(int k=0;k<4*W;k++) { tmp[i][j]+=E[i][k]*D[k][j]%mod; } for(int i=0;i<4*W;i++)for(int j=0;j<4*W;j++)E[i][j]=tmp[i][j]%mod; } KK>>=1; for(int i=0;i<4*W;i++)for(int j=0;j<4*W;j++)tmp[i][j]=0; for(int i=0;i<4*W;i++)for(int j=0;j<4*W;j++)for(int k=0;k<4*W;k++) { tmp[i][j]+=D[i][k]*D[k][j]%mod; } for(int i=0;i<4*W;i++)for(int j=0;j<4*W;j++)D[i][j]=tmp[i][j]%mod; } long ans[160]={}; for(int i=0;i<4*W;i++)ans[i]=E[i][0]; for(int j=0;j<2*W;j++)for(int i=0;i<2;i++) { for(int I=0;I<N;I++) { if(j+A[I]<2*W) { int nl=i; nl+=(j+A[I])/W-j/W; if((j+A[I])%W==0) { if(nl<=2)nl=0; else continue; } if(nl<2)(ans[nl*2*W+j+A[I]]+=ans[i*2*W+j])%=mod; } } } cout<<ans[K%2*W]<<endl; }