結果

問題 No.2217 Suffix+
ユーザー jianglyjiangly
提出日時 2023-02-17 21:24:52
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 201,820 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 12:25:26
合計ジャッジ時間 4,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using i64 = long long;

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    
    int n, k;
    std::cin >> n >> k;
    
    std::vector<i64> a(n);
    for (int i = 0; i < n; i++) {
        std::cin >> a[i];
    }
    
    i64 lo = 0, hi = 2E14;
    
    while (lo < hi) {
        i64 x = (lo + hi + 1) / 2;
        
        i64 need = 0;
        i64 add = 0;
        for (int i = 0; i < n; i++) {
            i64 cur = a[i] + add;
            if (cur < x) {
                i64 t = (x - cur + i) / (i + 1);
                need += t;
                add += t * (i + 1);
            }
        }
        
        if (need <= k) {
            lo = x;
        } else {
            hi = x - 1;
        }
    }
    
    std::cout << lo << "\n";
    
    return 0;
}
0