結果

問題 No.865 24時間降水量
ユーザー 0w10w1
提出日時 2019-08-20 16:22:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 203,116 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-06 12:30:51
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 17 ms
5,248 KB
testcase_11 AC 17 ms
5,248 KB
testcase_12 AC 18 ms
5,248 KB
testcase_13 AC 17 ms
5,248 KB
testcase_14 AC 17 ms
5,248 KB
testcase_15 AC 316 ms
5,248 KB
testcase_16 AC 318 ms
5,248 KB
testcase_17 AC 318 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  ios::sync_with_stdio(false);

  int N;
  cin >> N;

  vector<int> A(N);
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
  }

  vector<int> s24(N);
  for (int i = 0; i + 24 <= N; ++i) {
    for (int j = 0; j < 24; ++j) {
      s24[i] += A[i + j];
    }
  }

  int max24 = *max_element(s24.begin(), s24.end());

  int Q;
  cin >> Q;
  for (int _ = 0; _ < Q; ++_) {
    int T, V;
    cin >> T >> V;
    --T;
  
    for (int i = max(0, T - 23); i < T + 1; ++i) {
      max24 = max(max24, s24[i] += V - A[T]);
    }

    A[T] = V;

    cout << max24 << endl;
  }

  return 0;
}
0