結果

問題 No.865 24時間降水量
ユーザー WarToksWarToks
提出日時 2019-08-16 22:17:50
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 973 bytes
コンパイル時間 767 ms
コンパイル使用メモリ 131,220 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 19:20:04
合計ジャッジ時間 1,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>


#define REP(i, n) for(int (i) = 0; (i) < (n); ++(i))
#define ALL(TheArray) TheArray.begin(), TheArray.end()

template <class T> inline T& chmax(T& a, T b){return (a < b) ? a = b : a;}
template <class T> inline T& chmin(T& a, T b){return (a > b) ? a = b : a;}

using lli = long long int;



std::vector<int> A, S;

int main(void){
    int n; scanf("%d", &n);
    A.resize(n); REP(i, n) scanf("%d", &A[i]);

    S.resize(n-23);
    int s = 0; REP(i, 24) s += A[i];
    REP(i, n-23){
        S[i] = s;
        if(i + 24 < n) s += A[i+24] - A[i];
    }
    int mx = -1;
    REP(i, n - 23) if(mx < S[i]) mx = S[i];

    int Q; scanf("%d", &Q);
    while(Q--){
        int t, v; scanf("%d%d", &t, &v); t--;
        int diff = v - A[t]; A[t] = v;
        REP(j, 24) if(0 <= t - j and t - j < n - 23){
            S[t-j] += diff;
            chmax(mx, S[t-j]);
        }
        printf("%d\n", mx);
    }
    return 0;
}
0