結果

問題 No.2694 The Early Bird Catches The Worm
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2024-03-22 23:13:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 1,492 ms
コンパイル使用メモリ 172,724 KB
実行使用メモリ 7,024 KB
最終ジャッジ日時 2024-09-30 12:27:56
合計ジャッジ時間 9,176 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 72
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int N, H, R = 0; cin >> N >> H;
  long long Ans = 0, Sum = 0, Tot = 0;
  vector<int> A(N), B(N);
  for (int &a : A) cin >> a;
  for (int &b : B) cin >> b;
  vector<long long> S(1);
  for (int i = 0; i < N; i++) S.push_back(S.at(i) + A.at(i));

  for (int L = 0; L < N; L++) {
    while(R < N && Sum + (long long)(R - L + 1) * B.at(R) <= H) {
      Sum += (long long)(R - L + 1) * B.at(R);
      Tot += B.at(R);
      R++;
    }
    Ans = max(Ans, S.at(R) - S.at(L));
    if (R == L) R++;
    else { Sum -= Tot; Tot -= B.at(L); }
  }

  cout << Ans << endl;
}
0