結果

問題 No.2601 Very Poor
ユーザー kk0414
提出日時 2024-04-01 23:12:45
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,001 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 195,720 KB
最終ジャッジ日時 2025-02-20 19:23:19
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16 WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0