結果
問題 |
No.2601 Very Poor
|
ユーザー |
|
提出日時 | 2024-04-01 23:20:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 88 ms / 2,000 ms |
コード長 | 1,000 bytes |
コンパイル時間 | 2,810 ms |
コンパイル使用メモリ | 195,164 KB |
最終ジャッジ日時 | 2025-02-20 19:24:55 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for (int i = 0;i<(int)(n);i++) #define inf 1001001001 #define infll 400400400400400400 ll bisect(int l,int r,vector<ll> &csum,ll &X, int &str){ if (l > r){ return csum.at(str+r) - csum.at(str); } int p = (l+r)/2; ll sample = csum.at(str+p) - csum.at(str); if (sample > X){ p--; return bisect(l,p,csum,X,str); } else{ p++; return bisect(p,r,csum,X,str); } } int main(){ int N; ll X; cin >> N >> X; vector<ll> v(N*2); vector<ll> csum(N*2+1); csum.at(0) = 0; rep(i,N){ ll n; cin >> n; v.at(i) = n; v.at(i+N) = n; csum.at(i+1) = csum.at(i) + n; } rep(i,N){ csum.at(i+1+N) = csum.at(i+N) + v.at(i); } ll ans = 0; rep(i,N){ int l = 0; ll y = bisect(l,N,csum,X,i); ans = max(ans,y); } cout << ans << endl; }