結果
問題 | No.2217 Suffix+ |
ユーザー | shoshoshom |
提出日時 | 2023-02-17 21:43:47 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 87 ms / 2,000 ms |
コード長 | 825 bytes |
コンパイル時間 | 1,780 ms |
コンパイル使用メモリ | 202,360 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 12:53:41 |
合計ジャッジ時間 | 3,664 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
ソースコード
#ifndef SHO_LOCAL #include <bits/stdc++.h> #define debug(...) ; #else #include "debug.h" #endif using namespace std; using ll = long long; int main() { iostream::sync_with_stdio(0), cin.tie(0); int n, k; cin >> n >> k; vector<ll> A(n); for (int i = 0; i < n; i++) { cin >> A[i]; } ll sum = 0; ll low = *min_element(A.begin(), A.end()); ll high = *max_element(A.begin(), A.end()) + k + 1; while (high - low > 1) { sum = 0; ll x = (high - low) / 2 + low; ll cnt = 0; for (ll i = 0; i < n; i++) { ll need = x - A[i] - sum; ll now = 0; if (need > 0) { now = (need + i) / (i + 1); cnt += now; } sum = sum + now * (i + 1); } if (cnt <= k) { low = x; } else { high = x; } } cout << low << '\n'; return 0; }