結果

問題 No.31 悪のミックスジュース
ユーザー kimiyukikimiyuki
提出日時 2016-07-04 12:12:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,050 bytes
コンパイル時間 1,000 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 120,576 KB
最終ジャッジ日時 2024-11-17 09:10:17
合計ジャッジ時間 19,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1,637 ms
75,220 KB
testcase_02 AC 1,572 ms
78,080 KB
testcase_03 AC 2,714 ms
120,420 KB
testcase_04 AC 1,260 ms
120,576 KB
testcase_05 AC 1,252 ms
120,576 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2,272 ms
120,448 KB
testcase_08 AC 2,134 ms
120,448 KB
testcase_09 AC 2,850 ms
120,440 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 11 ms
5,248 KB
testcase_12 AC 604 ms
36,804 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 1,625 ms
108,544 KB
testcase_15 AC 4 ms
5,248 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 = n*n*n*sqrt(n); // ??? 
    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;
}
0