結果
問題 | No.31 悪のミックスジュース |
ユーザー | kyuna |
提出日時 | 2019-08-08 00:35:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 832 bytes |
コンパイル時間 | 641 ms |
コンパイル使用メモリ | 72,448 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 18:54:23 |
合計ジャッジ時間 | 1,365 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <algorithm> #include <iostream> #include <vector> using namespace std; const long long INF = 1LL << 60; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } int main() { int n, v; cin >> n >> v; vector<long long> c(n); for (auto &ci: c) cin >> ci; v = max(0, v - n); vector<long long> acc(n + 1); for (int k = 0; k < n; k++) acc[k + 1] = acc[k] + c[k]; int opt = 1; for (int k = 2; k <= n; k++) if (acc[opt] * k > acc[k] * opt) opt = k; vector<long long> dp(n * n + 1, INF); dp[0] = 0; for (int k = 1; k <= n; k++) { for (int i = k; i <= n * n; i++) chmin(dp[i], dp[i - k] + acc[k]); } int m = max(0, (v - n * n) / opt); long long res = m * acc[opt] + dp[v - m * opt] + acc[n]; cout << res << endl; return 0; }