結果
問題 | No.865 24時間降水量 |
ユーザー | nobukichi |
提出日時 | 2019-08-27 20:51:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 849 bytes |
コンパイル時間 | 510 ms |
コンパイル使用メモリ | 64,736 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-17 04:58:51 |
合計ジャッジ時間 | 3,308 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <math.h> using namespace std; typedef long long LL; int main() { int N; cin >> N; vector<int> A(N); for (int i = 0; i < N; ++i) { cin >> A[i]; } vector<int> accum(N-23, 0); for (int i = 0; i < 24; ++i) { accum[0] += A[i]; } int maxAccum = accum[0]; for (int i = 1; i + 23 < N; ++i) { accum[i] = accum[i-1] + A[i + 23] - A[i-1]; maxAccum = max(maxAccum, accum[i]); } int Q; cin >> Q; for (int i = 0; i < Q; ++i) { int T, V; cin >> T >> V; --T; int diff = V - A[T]; for (int j = max(0, T-23); j <= min(T, N-24); ++j) { accum[j] += diff; maxAccum = max(maxAccum, accum[j]); } cout << maxAccum << endl; } return 0; }