結果
問題 | No.31 悪のミックスジュース |
ユーザー | Pachicobue |
提出日時 | 2018-11-24 04:02:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 1,123 bytes |
コンパイル時間 | 2,171 ms |
コンパイル使用メモリ | 203,760 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 15:54:25 |
合計ジャッジ時間 | 2,892 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define show(x) std::cerr << #x << " = " << x << std::endl using ll = long long; template <typename T> constexpr T INF = std::numeric_limits<T>::max() / 4; int main() { int N; ll V; std::cin >> N >> V; std::vector<ll> C(N); ll sum = 0; for (auto& e : C) { std::cin >> e, sum += e, V--; } if (V <= 0) { return std::cout << sum << std::endl, 0; } for (int i = 1; i < N; i++) { C[i] += C[i - 1]; } const int L = N * N; std::vector<ll> dp(L, INF<ll>); // 合計iリットル使う最安値 dp[0] = 0; std::vector<ll> tmp(L, INF<ll>); for (int i = 0; i < N; i++) { for (int j = 0; j < L; j++) { tmp[j] = (j <= i ? dp[j] : std::min(dp[j], tmp[j - i - 1] + C[i])); } std::swap(dp, tmp), std::fill(tmp.begin(), tmp.end(), INF<ll>); } if (V < L) { return std::cout << sum + dp[V] << std::endl, 0; } ll min = INF<ll>; for (int i = 0; i < N; i++) { for (int j = V % (i + 1); j < L; j += i + 1) { min = std::min(min, dp[j] + (V - j) / (i + 1) * C[i]); } } std::cout << min + sum << std::endl; return 0; }