結果

問題 No.2217 Suffix+
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-02-17 21:35:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 202,772 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 12:41:19
合計ジャッジ時間 5,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 38 ms
5,376 KB
testcase_15 AC 37 ms
5,376 KB
testcase_16 AC 77 ms
5,376 KB
testcase_17 AC 56 ms
5,376 KB
testcase_18 AC 47 ms
5,376 KB
testcase_19 AC 112 ms
5,376 KB
testcase_20 AC 97 ms
5,376 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 104 ms
5,376 KB
testcase_23 AC 80 ms
5,376 KB
testcase_24 AC 154 ms
5,376 KB
testcase_25 AC 154 ms
5,376 KB
testcase_26 AC 156 ms
5,376 KB
testcase_27 AC 157 ms
5,376 KB
testcase_28 AC 158 ms
5,376 KB
testcase_29 AC 156 ms
5,376 KB
testcase_30 AC 156 ms
5,376 KB
testcase_31 AC 154 ms
5,376 KB
testcase_32 AC 154 ms
5,376 KB
testcase_33 AC 157 ms
5,376 KB
testcase_34 AC 156 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 156 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main () {
    ll N, K;
    cin >> N >> K;
    std::vector<ll> A(N);
    for (auto& a : A) {
        cin >> a;
    }
    ll ok = 0, ng = (ll)1e16;
    while (abs(ok - ng) > 1) {
        ll mu = (ng + ok) / 2;
        ll pll = 0;
        ll k = K;
        for (ll i = 0; i < N; i ++) {
            ll ad = max(0ll, mu - (A[i] + pll));
            ll c = (ad + i) / (i + 1);
            k -= c;
            pll += c * (i + 1);
        }
        if (k >= 0) {
            ok = mu;
        } else {
            ng = mu;
        }
    }
    cout << ok << endl;
}
0