結果

問題 No.2601 Very Poor
ユーザー kk0414kk0414
提出日時 2024-04-01 23:20:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 204,332 KB
実行使用メモリ 9,604 KB
最終ジャッジ日時 2024-04-01 23:21:03
合計ジャッジ時間 5,712 ms
ジャッジサーバーID
(参考情報)
judge10 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 3 ms
6,676 KB
testcase_07 AC 3 ms
6,676 KB
testcase_08 AC 3 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 2 ms
6,676 KB
testcase_12 AC 2 ms
6,676 KB
testcase_13 AC 2 ms
6,676 KB
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 78 ms
9,604 KB
testcase_16 AC 77 ms
9,604 KB
testcase_17 AC 78 ms
9,604 KB
testcase_18 AC 80 ms
9,604 KB
testcase_19 AC 78 ms
9,604 KB
testcase_20 AC 78 ms
9,604 KB
testcase_21 AC 78 ms
9,604 KB
testcase_22 AC 77 ms
9,604 KB
testcase_23 AC 78 ms
9,604 KB
testcase_24 AC 79 ms
9,604 KB
testcase_25 AC 79 ms
9,604 KB
testcase_26 AC 79 ms
9,604 KB
testcase_27 AC 78 ms
9,604 KB
testcase_28 AC 77 ms
9,604 KB
testcase_29 AC 78 ms
9,604 KB
testcase_30 AC 78 ms
9,604 KB
testcase_31 AC 79 ms
9,604 KB
testcase_32 AC 77 ms
9,604 KB
testcase_33 AC 77 ms
9,604 KB
testcase_34 AC 78 ms
9,604 KB
testcase_35 AC 2 ms
6,676 KB
testcase_36 AC 3 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

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