結果
問題 | No.288 貯金箱の仕事 |
ユーザー | maine_honzuki |
提出日時 | 2021-05-13 10:52:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 976 bytes |
コンパイル時間 | 2,307 ms |
コンパイル使用メモリ | 204,944 KB |
実行使用メモリ | 15,240 KB |
最終ジャッジ日時 | 2024-09-25 00:08:44 |
合計ジャッジ時間 | 16,198 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
15,240 KB |
testcase_01 | AC | 15 ms
7,936 KB |
testcase_02 | AC | 11 ms
7,936 KB |
testcase_03 | AC | 5 ms
7,936 KB |
testcase_04 | WA | - |
testcase_05 | AC | 4 ms
8,064 KB |
testcase_06 | AC | 4 ms
8,064 KB |
testcase_07 | AC | 1,550 ms
8,064 KB |
testcase_08 | AC | 117 ms
8,040 KB |
testcase_09 | AC | 1,062 ms
8,028 KB |
testcase_10 | AC | 320 ms
7,996 KB |
testcase_11 | AC | 500 ms
8,140 KB |
testcase_12 | AC | 308 ms
7,992 KB |
testcase_13 | AC | 862 ms
7,924 KB |
testcase_14 | AC | 279 ms
7,984 KB |
testcase_15 | AC | 1,275 ms
8,028 KB |
testcase_16 | AC | 1,007 ms
8,028 KB |
testcase_17 | AC | 200 ms
8,060 KB |
testcase_18 | AC | 527 ms
8,136 KB |
testcase_19 | AC | 213 ms
8,108 KB |
testcase_20 | AC | 123 ms
7,924 KB |
testcase_21 | AC | 479 ms
8,028 KB |
testcase_22 | AC | 1,038 ms
8,080 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
ソースコード
//https://ncode.syosetu.com/n4830bu/288/ #include <bits/stdc++.h> using namespace std; using ll = long long; int main() { ll N, M; cin >> N >> M; vector<ll> A(N), K(N); for (auto&& a : A) { cin >> a; } for (auto&& k : K) { cin >> k; } M *= -1; for (int i = 0; i < N; i++) { M += A[i] * K[i]; } vector<ll> dp(610000, (ll)1e18 + 10); dp[0] = 0; ll maine = 1; if (M > 0) while (M) { for (int i = 0; i < N; i++) { for (int x = 600000; x >= 0; x--) { dp[x + A[i]] = min(dp[x + A[i]], dp[x] + maine); } } for (int i = 0; i < 300000; i++) { dp[i] = dp[i * 2 + M % 2ll]; } fill(dp.begin() + 300000, dp.end(), (ll)1e18 + 10); M >>= 1; maine <<= 1; } else dp[0] = -1; cout << (dp[0] > (ll)1e18 ? -1 : dp[0]) << endl; }