結果

問題 No.2601 Very Poor
ユーザー 寝癖寝癖
提出日時 2024-07-15 15:29:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,730 bytes
コンパイル時間 4,838 ms
コンパイル使用メモリ 310,660 KB
実行使用メモリ 9,604 KB
最終ジャッジ日時 2024-07-15 15:29:31
合計ジャッジ時間 8,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 70 ms
9,552 KB
testcase_16 AC 71 ms
9,472 KB
testcase_17 AC 71 ms
9,564 KB
testcase_18 AC 69 ms
9,492 KB
testcase_19 AC 69 ms
9,472 KB
testcase_20 AC 69 ms
9,472 KB
testcase_21 AC 69 ms
9,572 KB
testcase_22 AC 70 ms
9,452 KB
testcase_23 AC 68 ms
9,492 KB
testcase_24 AC 68 ms
9,472 KB
testcase_25 AC 68 ms
9,484 KB
testcase_26 AC 68 ms
9,604 KB
testcase_27 AC 69 ms
9,564 KB
testcase_28 AC 69 ms
9,544 KB
testcase_29 AC 71 ms
9,472 KB
testcase_30 AC 68 ms
9,488 KB
testcase_31 AC 69 ms
9,428 KB
testcase_32 AC 70 ms
9,600 KB
testcase_33 AC 69 ms
9,420 KB
testcase_34 AC 68 ms
9,548 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

using namespace std;
using namespace atcoder;

typedef long long ll;
typedef long double ld;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef vector<ld> vld;
typedef vector<vi> vvi;
typedef vector<vll> vvll;

#define _overload3(_1,_2,_3,name,...) name
#define _rep(i,n) repi(i,0,n)
#define repi(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__)
#define _rrep(i,n) rrepi(i,n-1,-1)
#define rrepi(i,a,b) for(int i=int(a);i>int(b);--i)
#define rrep(...) _overload3(__VA_ARGS__,rrepi,_rrep)(__VA_ARGS__)

#define all(x) (x).begin(),(x).end()
#define SORT(x) sort(all(x))
#define REVERSE(x) reverse(all(x))

template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }

ostream& operator<<(ostream& os, const modint998244353& a) { return os << a.val(); }
ostream& operator<<(ostream& os, const modint1000000007& a) { return os << a.val(); }

template<class T> istream& operator>>(istream& is, vector<T>& vec) { for (T& x : vec) is >> x; return is; }
template<class T> ostream& operator<<(ostream& os, const vector<T>& vec) { for (const T& x : vec) os << x << ' '; return os; }

int main() {
    int N, X;
    cin >> N >> X;

    vll A(N);
    cin >> A;
    A.resize(2*N);
    rep(i, N, 2*N) A[i] = A[i-N];

    vll acc(2*N+1);
    rep(i, 0, 2*N) acc[i+1] = acc[i]+A[i];
    auto it = acc.begin();
    ll ans = 0;
    rep(i, N) {
        // iからとれるだけとる
        int n = upper_bound(it, it+N, *it+X) - acc.begin();
        chmax(ans, acc[n-1] - *it);
        it++;
    }
    cout << ans << endl;
}
0