結果
問題 | No.31 悪のミックスジュース |
ユーザー | Pachicobue |
提出日時 | 2018-11-24 03:45:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,049 bytes |
コンパイル時間 | 2,142 ms |
コンパイル使用メモリ | 203,536 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 23:54:43 |
合計ジャッジ時間 | 2,781 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 10 ms
5,376 KB |
testcase_02 | AC | 10 ms
5,376 KB |
testcase_03 | AC | 13 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 15 ms
5,376 KB |
testcase_08 | AC | 14 ms
5,376 KB |
testcase_09 | AC | 15 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 6 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 12 ms
5,376 KB |
testcase_15 | AC | 2 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() / 10; 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]; } std::vector<ll> dp(N * N, INF<ll>); // 合計iリットル使う最安値 dp[0] = 0; std::vector<ll> tmp(N * N, INF<ll>); for (int i = 0; i < N; i++) { for (int j = 0; j < N * N; 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>); } ll min = INF<ll>; for (int i = 0; i < N * N; i++) { for (int j = 0; j < N; j++) { min = std::min(min, dp[i] + std::max(0LL, (V - i + j) / (j + 1) * C[j])); } } std::cout << min + sum << std::endl; return 0; }