結果
問題 | No.31 悪のミックスジュース |
ユーザー | izuru_matsuura |
提出日時 | 2016-02-17 16:32:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,962 bytes |
コンパイル時間 | 1,391 ms |
コンパイル使用メモリ | 163,920 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-09-22 07:29:49 |
合計ジャッジ時間 | 2,185 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 11 ms
11,392 KB |
testcase_08 | AC | 12 ms
11,392 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; namespace { typedef double real; typedef long long ll; template<class T> ostream& operator<<(ostream& os, const vector<T>& vs) { if (vs.empty()) return os << "[]"; os << "[" << vs[0]; for (int i = 1; i < vs.size(); i++) os << " " << vs[i]; return os << "]"; } int N; ll V; vector<ll> C; void input() { cin >> N >> V; C.resize(N); for (int i = 0; i < N; i++) cin >> C[i]; } void solve() { vector<ll> S(N, 0); // [0, k]を1[L]ずつまぜたジュースのk+1[L]の値段 S[0] = C[0]; for (int i = 1; i < N; i++) { S[i] = S[i - 1] + C[i]; } V -= N; int k = N - 1; for (int i = 0; i < N; i++) { real c = real(S[i]) / (i + 1); if (c < real(S[k]) / (k + 1)) { k = i; } } const ll INF = 1LL<<56; if (V <= 0) { cout << S[N - 1] << endl; return; } ll dp[N * N + 1][N + 1]; for (int j = 0; j <= N * N; j++) dp[0][j] = 0; for (int i = 1; i <= N * N; i++) for (int j = 0; j < N; j++) dp[i][j] = INF; for (int i = 1; i <= N * N; i++) { for (int j = 1; j <= N; j++) { dp[i][j] = dp[i][j - 1]; if (i - j >= 0) dp[i][j] = min(dp[i][j], dp[i - j][j - 1] + S[j - 1]); else dp[i][j] = min(dp[i][j], S[j - 1]); } } //for (int i = 0; i <= N; i++) cout << i << " -> " << dp[i][N] << endl; ll ans = LLONG_MAX / 4LL; ans = min(ans, S[k] * (V + k) / (k + 1)); for (int i = 1; i <= N * N; i++) { ll v = V - i; ans = min(ans, dp[i][N] + max(0LL, S[k] * ((v + k) / (k + 1)))); } cout << ans + S[N - 1] << endl; } } int main() { input(); solve(); return 0; }