結果

問題 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,134 ms
コンパイル使用メモリ 200,916 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-09-26 18:46:12
合計ジャッジ時間 6,186 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 1 ms
4,384 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,384 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 37 ms
4,388 KB
testcase_15 AC 38 ms
4,380 KB
testcase_16 AC 78 ms
4,380 KB
testcase_17 AC 57 ms
4,380 KB
testcase_18 AC 46 ms
4,380 KB
testcase_19 AC 113 ms
4,384 KB
testcase_20 AC 96 ms
4,380 KB
testcase_21 AC 15 ms
4,380 KB
testcase_22 AC 104 ms
4,384 KB
testcase_23 AC 79 ms
4,384 KB
testcase_24 AC 155 ms
4,384 KB
testcase_25 AC 154 ms
4,384 KB
testcase_26 AC 153 ms
4,380 KB
testcase_27 AC 155 ms
4,380 KB
testcase_28 AC 156 ms
4,380 KB
testcase_29 AC 153 ms
4,384 KB
testcase_30 AC 154 ms
4,380 KB
testcase_31 AC 154 ms
4,384 KB
testcase_32 AC 154 ms
4,384 KB
testcase_33 AC 157 ms
4,384 KB
testcase_34 AC 158 ms
4,380 KB
testcase_35 AC 1 ms
4,380 KB
testcase_36 AC 155 ms
4,380 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