結果
問題 | No.137 貯金箱の焦り |
ユーザー | pockyny |
提出日時 | 2022-12-30 14:42:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 588 bytes |
コンパイル時間 | 892 ms |
コンパイル使用メモリ | 70,380 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-25 11:12:23 |
合計ジャッジ時間 | 7,215 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
#include <iostream> using namespace std; typedef long long ll; ll mod = 1234567891,dp[200010],a[110]; int main(){ ll i,j,n,m; cin >> n >> m; for(i=0;i<n;i++) cin >> a[i]; dp[0] = 1; int sum = 0; for(i=0;i<n;i++) sum += a[i]; while(m){ for(i=0;i<n;i++){ for(j=2*sum;j>=a[i];j--){ (dp[j] += dp[j - a[i]]) %= mod; } } for(j=0;j<=2*sum;j++){ ll nx = 2*j + m&1; if(nx<=2*sum) dp[j] = dp[nx]; else dp[j] = 0; } m /= 2; } cout << dp[0] << "\n"; }