結果
問題 | No.409 ダイエット |
ユーザー | 0w1 |
提出日時 | 2019-10-17 14:12:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 867 bytes |
コンパイル時間 | 2,387 ms |
コンパイル使用メモリ | 209,004 KB |
実行使用メモリ | 41,556 KB |
最終ジャッジ日時 | 2024-06-24 10:05:23 |
合計ジャッジ時間 | 14,595 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | WA | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | WA | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | WA | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | WA | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | RE | - |
testcase_56 | AC | 54 ms
6,944 KB |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | WA | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | RE | - |
testcase_67 | RE | - |
testcase_68 | WA | - |
testcase_69 | WA | - |
testcase_70 | RE | - |
testcase_71 | RE | - |
testcase_72 | RE | - |
testcase_73 | WA | - |
testcase_74 | RE | - |
testcase_75 | WA | - |
testcase_76 | RE | - |
testcase_77 | WA | - |
testcase_78 | RE | - |
testcase_79 | RE | - |
testcase_80 | RE | - |
testcase_81 | WA | - |
testcase_82 | RE | - |
testcase_83 | RE | - |
testcase_84 | WA | - |
testcase_85 | WA | - |
testcase_86 | WA | - |
testcase_87 | RE | - |
testcase_88 | WA | - |
testcase_89 | WA | - |
testcase_90 | WA | - |
testcase_91 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, A, B, W; cin >> N >> A >> B >> W; vector<int> D(N); for (int i = 0; i < N; ++i) { cin >> D[i]; } if (B == 0) { int64_t ans = W - (int64_t) N * A; cout << ans << endl; } else { int maxd = *max_element(D.begin(), D.end()); int threshold = ceil(2 * sqrt((maxd + A) / (3 * B))); const int64_t INF = 3e11; vector<vector<int64_t>> dp(N + 1, vector<int64_t>(threshold, 3e11)); dp[0][0] = W; for (int i = 0; i < N; ++i) { for (int j = 0; j < threshold; ++j) { dp[i + 1][0] = min(dp[i + 1][0], dp[i][j] + D[i]); if (j + 1 < threshold) dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i][j] - A + (int64_t) B * (j + 1)); } } int64_t ans = *min_element(dp[N].begin(), dp[N].end()); cout << ans << endl; } return 0; }