結果

問題 No.31 悪のミックスジュース
ユーザー izuru_matsuuraizuru_matsuura
提出日時 2016-02-16 21:35:01
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,334 bytes
コンパイル時間 1,422 ms
コンパイル使用メモリ 163,384 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-22 06:01:44
合計ジャッジ時間 2,084 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 WA -
testcase_10 AC 2 ms
4,348 KB
testcase_11 WA -
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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[L]の値段
        S[0] = C[0];
        for (int i = 1; i < N; i++) {
            S[i] = S[i - 1] + C[i];
        }

        ll ans = S[N - 1];
        V -= N;
        for (int k = N - 1; V > 0; ) {
            int j = k;
            real c = real(S[k]) / (k + 1);
            for (int i = 0; i < k; i++) {
                if (real(S[i]) / (i + 1) < c) {
                    j = i;
                    c = real(S[i]) / (i + 1);
                }
            }

            ll x = V / (j + 1);
            ans += x * S[j];
            V -= x * (j + 1);
            k = j - 1;
            //cerr << k << " " << x << endl;
        }

        cout << ans << endl;
    }
}

int main() {
    input(); solve();
    return 0;
}

0