結果
問題 | No.31 悪のミックスジュース |
ユーザー | kimiyuki |
提出日時 | 2017-01-05 19:17:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3,010 ms / 5,000 ms |
コード長 | 1,030 bytes |
コンパイル時間 | 663 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 143,980 KB |
最終ジャッジ日時 | 2024-05-09 20:30:03 |
合計ジャッジ時間 | 35,577 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,244 ms
143,904 KB |
testcase_01 | AC | 3,010 ms
143,908 KB |
testcase_02 | AC | 2,820 ms
143,940 KB |
testcase_03 | AC | 2,949 ms
143,872 KB |
testcase_04 | AC | 1,435 ms
143,872 KB |
testcase_05 | AC | 1,592 ms
143,916 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2,757 ms
143,836 KB |
testcase_08 | AC | 2,388 ms
143,980 KB |
testcase_09 | AC | 3,009 ms
143,872 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2,275 ms
143,868 KB |
testcase_12 | AC | 2,641 ms
143,876 KB |
testcase_13 | AC | 536 ms
143,800 KB |
testcase_14 | AC | 2,114 ms
143,872 KB |
testcase_15 | AC | 1,922 ms
143,828 KB |
testcase_16 | AC | 2,008 ms
143,872 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <numeric> #include <climits> #include <cmath> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) typedef long long ll; using namespace std; int main() { int n; ll v; cin >> n >> v; vector<ll> c(n); repeat (i,n) cin >> c[i]; if (v <= n) { cout << accumulate(c.begin(), c.end(), 0ll) << endl; return 0; } v -= n; // the restriction, that all fruits must be used, is fulfilled now. vector<ll> acc(n+1); repeat (i,n) acc[i+1] = acc[i] + c[i]; const int l = 1.2e7; // ??? vector<ll> dp(l+1, LLONG_MAX); dp[0] = 0; repeat (i,l) { repeat (j,min(i+1,n)) { dp[i+1] = min(dp[i+1], dp[i-j] + acc[j+1]); } } vector<int> eff(l); repeat (i,l) eff[i] = i+1; sort(eff.begin(), eff.end(), [&](int a, int b) { return dp[a] * b < dp[b] * a; // sort by the efficiency }); int e = eff.front(); cout << acc[n] + (v / e) * dp[e] + dp[v % e] << endl; return 0; }