結果
問題 | No.31 悪のミックスジュース |
ユーザー | Pachicobue |
提出日時 | 2018-11-24 03:54:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,069 bytes |
コンパイル時間 | 2,121 ms |
コンパイル使用メモリ | 204,532 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 23:54:46 |
合計ジャッジ時間 | 2,861 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 1 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 | 1 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; i++) { for (int j = V % (i + 1); j < std::min((int)V + 1, N * N); j += i + 1) { min = std::min(min, dp[j] + (V - j) / (i + 1) * C[i]); } } std::cout << min + sum << std::endl; return 0; }