結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー ooaiuooaiu
提出日時 2024-07-06 12:01:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 2,495 bytes
コンパイル時間 5,809 ms
コンパイル使用メモリ 309,660 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-06 12:01:54
合計ジャッジ時間 13,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 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,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 19 ms
6,944 KB
testcase_25 AC 16 ms
6,940 KB
testcase_26 AC 21 ms
6,940 KB
testcase_27 AC 30 ms
6,944 KB
testcase_28 AC 29 ms
7,040 KB
testcase_29 AC 10 ms
6,944 KB
testcase_30 AC 47 ms
9,344 KB
testcase_31 AC 27 ms
6,940 KB
testcase_32 AC 56 ms
9,600 KB
testcase_33 AC 52 ms
9,472 KB
testcase_34 AC 4 ms
6,944 KB
testcase_35 AC 25 ms
6,940 KB
testcase_36 AC 35 ms
7,296 KB
testcase_37 AC 57 ms
10,240 KB
testcase_38 AC 35 ms
7,808 KB
testcase_39 AC 9 ms
6,940 KB
testcase_40 AC 26 ms
6,944 KB
testcase_41 AC 13 ms
6,944 KB
testcase_42 AC 3 ms
6,944 KB
testcase_43 AC 6 ms
6,940 KB
testcase_44 AC 52 ms
10,368 KB
testcase_45 AC 48 ms
10,240 KB
testcase_46 AC 18 ms
6,944 KB
testcase_47 AC 16 ms
6,944 KB
testcase_48 AC 33 ms
7,040 KB
testcase_49 AC 52 ms
11,008 KB
testcase_50 AC 53 ms
11,008 KB
testcase_51 AC 53 ms
11,008 KB
testcase_52 AC 53 ms
11,008 KB
testcase_53 AC 52 ms
11,136 KB
testcase_54 AC 64 ms
11,008 KB
testcase_55 AC 63 ms
11,008 KB
testcase_56 AC 62 ms
11,008 KB
testcase_57 AC 69 ms
11,136 KB
testcase_58 AC 56 ms
11,008 KB
testcase_59 AC 67 ms
11,008 KB
testcase_60 AC 66 ms
11,008 KB
testcase_61 AC 67 ms
11,008 KB
testcase_62 AC 68 ms
11,008 KB
testcase_63 AC 65 ms
11,008 KB
testcase_64 AC 55 ms
11,008 KB
testcase_65 AC 64 ms
11,008 KB
testcase_66 AC 62 ms
11,008 KB
testcase_67 AC 56 ms
11,136 KB
testcase_68 AC 54 ms
11,008 KB
testcase_69 AC 83 ms
11,136 KB
testcase_70 AC 59 ms
11,008 KB
testcase_71 AC 59 ms
11,008 KB
testcase_72 AC 59 ms
11,008 KB
testcase_73 AC 59 ms
11,136 KB
testcase_74 AC 30 ms
7,168 KB
testcase_75 AC 59 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif

#ifdef LOCAL
#include "algo/debug.hpp"
#else
#define debug(...) void(0)
#endif

using ll = long long;
using ld = long double;
const ll linf=(1LL<<60) - 1;
const int inf=(1LL<<30) - 1;
#define len(obj) int(obj.size())
#define overload4(a,b,c,d,name,...) name
#define overload5(a,b,c,d,e,name,...) name
#define rep1(n) for(ll _=0;_<n;++_)
#define rep2(i,n) for(ll i=0;i<n;++i)
#define rep3(i,a,b) for(ll i=a;i<b;++i)
#define rep4(i,a,b,c) for(ll i=a;i<b;i+=c)
#define rep(...) overload4(__VA_ARGS__,rep4,rep3,rep2,rep1)(__VA_ARGS__)
#define rrep1(n) for(ll _=n-1;_>=0;--_)
#define rrep2(i,n) for(ll i=n-1;i>=0;--i)
#define rrep3(i,a,b) for(ll i=b-1;i>=a;--i)
#define rrep4(i,a,b,c) for(ll i=(a)+((b)-(a)-1)/(c)*(c);i>=(a);i-=c)
#define rrep(...) overload4(__VA_ARGS__,rrep4,rrep3,rrep2,rrep1)(__VA_ARGS__)
#define each1(i,a) for(auto&&i:a)
#define each2(x,y,a) for(auto&&[x,y]:a)
#define each3(x,y,z,a) for(auto&&[x,y,z]:a)
#define each4(w,x,y,z,a) for(auto&&[w,x,y,z]:a)
#define each(...) overload5(__VA_ARGS__,each4,each3,each2,each1)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend() 
#define vec(type,name,...) vector<type> name(__VA_ARGS__)
#define vv(type,name,h,...) vector name(h,vector<type>(__VA_ARGS__))
#define vvv(type,name,h,w,...) vector name(h,vector(w,vector<type>(__VA_ARGS__)))
#define vvvv(type, name, h, w, n, ...) vector<vector<vector<vector<type>>>> name(h, vector<vector<vector<type>>>(w, vector<vector<type>>(n, vector<type>(__VA_ARGS__))))
struct Setting{ Setting(){ cin.tie(nullptr)->sync_with_stdio(0); fixed(cout).precision(12); } }Setting;
//-----------------------------------

int main() {
    ll N, H; cin >> N >> H;
    vector<ll> A(N), B(N);
    rep(i, N) cin >> A[i];
    rep(i, N) cin >> B[i];
    vector<ll> Ac(N + 1, 0);
    rep(i, N) Ac[i + 1] = Ac[i] + A[i];
    vector<ll> Bc(N + 1, 0);
    rep(i, N) Bc[i + 1] = Bc[i] + B[i];
    vector<ll> iB(N + 1, 0);
    rep(i, N) iB[i + 1] = iB[i] + (i + 1) * B[i];
    ll ans = 0;
    rep(i, N) {
        ll ok = i, ng = N;
        if(B[ok] > H) continue;
        while(abs(ok - ng) > 1) {
            ll mid = (ok + ng) / 2;
            ll t = iB[mid+1] - iB[i] - i * (Bc[mid+1] - Bc[i]);
            if(t <= H) ok = mid;
            else ng = mid;
        }
        ans = max(ans, Ac[ok + 1] - Ac[i]);
    }
    cout << ans << endl;
}
0