結果

問題 No.2601 Very Poor
ユーザー kk0414kk0414
提出日時 2024-04-01 23:12:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,001 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 204,212 KB
実行使用メモリ 9,604 KB
最終ジャッジ日時 2024-04-01 23:12:51
合計ジャッジ時間 6,387 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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