結果
問題 | No.2217 Suffix+ |
ユーザー | ttkkggww |
提出日時 | 2023-02-17 21:42:31 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 125 ms / 2,000 ms |
コード長 | 558 bytes |
コンパイル時間 | 2,058 ms |
コンパイル使用メモリ | 202,660 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 12:52:49 |
合計ジャッジ時間 | 4,369 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 33 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; ll n,k; vector<ll> a; bool is(ll m){ ll cur = 0; ll cnt = 0; for(ll i = 0;i<n;i++){ if(a[i]+cur<m){ ll x = m-(a[i]+cur); ll y = (x+i)/(i+1); cnt += y; cur += (i+1)*y; } } return cnt<=k; } void solve(){ ll l = 0,r = 1e18; while(r-l>1){ ll mid = (l+r)/2; if(is(mid)){ l = mid; }else{ r = mid; } } cout<<l<<endl; } signed main(){ cin.tie(nullptr); ios::sync_with_stdio(false); cin >> n >> k; a = vector<ll>(n); for(auto &i:a)cin >> i; solve(); }