結果
問題 | No.3046 yukicoderの過去問 |
ユーザー | beet |
提出日時 | 2019-04-03 20:49:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,667 ms / 2,000 ms |
コード長 | 583 bytes |
コンパイル時間 | 731 ms |
コンパイル使用メモリ | 73,728 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 10:15:36 |
合計ジャッジ時間 | 9,332 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1,578 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1,605 ms
5,376 KB |
testcase_06 | AC | 1,650 ms
5,376 KB |
testcase_07 | AC | 1,667 ms
5,376 KB |
testcase_08 | AC | 1,611 ms
5,376 KB |
ソースコード
#pragma GCC optimize ("O3") #pragma GCC target ("avx") #include<iostream> using namespace std; struct FastIO{ FastIO(){ cin.tie(0); ios::sync_with_stdio(0); } }fastio_beet; //INSERT ABOVE HERE const int MAX = 1<<17; const int MOD = 1e9+7; int x[MAX]={}; int dp[MAX]={}; signed main(){ int k,n; cin>>k>>n; for(int i=0;i<n;i++){ int p; cin>>p; x[p]=1; } dp[0]=1; for(int l=0;l<k;l++){ const int v=dp[l]%MOD; for(int i=0;l+i<=k;i++){ dp[l+i]+=v*x[i]; dp[l+i]-=MOD*(dp[l+i]>=MOD); } } cout<<dp[k]<<endl; return 0; }