結果

問題 No.865 24時間降水量
ユーザー kotamanegikotamanegi
提出日時 2019-08-16 22:13:04
言語 C++17(clang Beta)
(clang 13.0.0 + boost 1.78.0)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 2,133 bytes
コンパイル時間 954 ms
使用メモリ 8,372 KB
最終ジャッジ日時 2023-01-06 19:28:12
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
使用メモリ
testcase_00 AC 3 ms
3,416 KB
testcase_01 AC 2 ms
3,292 KB
testcase_02 AC 3 ms
3,392 KB
testcase_03 AC 3 ms
3,492 KB
testcase_04 AC 2 ms
3,320 KB
testcase_05 AC 5 ms
3,412 KB
testcase_06 AC 4 ms
3,344 KB
testcase_07 AC 4 ms
3,408 KB
testcase_08 AC 4 ms
3,412 KB
testcase_09 AC 4 ms
3,340 KB
testcase_10 AC 19 ms
3,644 KB
testcase_11 AC 20 ms
3,644 KB
testcase_12 AC 20 ms
3,456 KB
testcase_13 AC 20 ms
3,432 KB
testcase_14 AC 19 ms
3,556 KB
testcase_15 AC 387 ms
8,276 KB
testcase_16 AC 384 ms
8,372 KB
testcase_17 AC 389 ms
8,176 KB
testcase_18 AC 3 ms
3,504 KB
testcase_19 AC 2 ms
3,432 KB
testcase_20 AC 2 ms
3,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*

This Submission is to determine how many 120/240 min const. delivery point there are.

//info
120 req. steps <= 5

test_case 1,6 == 50 delivery point
		 2,3,4,5,7 == 80 delivery point
				8,9 == 90 delivery point
				10 > 100 delivery point
*/
#define  _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream>
#include <random>
#include<map>
#include <iomanip>
#include <time.h>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
#include <cassert>
#include<fstream>
#include <unordered_map>
#include <cstdlib>
#include <complex>
#include <cctype>
#include <bitset>
using namespace std;
typedef string::const_iterator State;
#define Ma_PI 3.141592653589793
#define eps 0.00000001
#define LONG_INF 1e18
#define GOLD 1.61803398874989484820458
#define MAX_MOD 1000000007
#define MOD 1000000007
#define seg_size 262144
#define REP(a,b) for(long long a = 0;a < b;++a)

unsigned long xor128() {
	static unsigned long x = time(NULL), y = 362436069, z = 521288629, w = 88675123;
	unsigned long t = (x ^ (x << 11));
	x = y; y = z; z = w;
	return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));
}
long long func(long long n, long long a) {
	pair<long long, long long> now;
	now.second = min(n, a-1);
	now.first = max(1LL, a - n);
	return max(0LL,now.second - now.first +1LL);
}
long long go[300000];
long long base[300000];
int main() {
	long long n;
	cin >> n;
	REP(i, n) {
		long long a;
		cin >> a;
		base[i] = a;
		for (int q = 0; q < 24; ++q) {
			go[i + q] += a;
		}
	}
	long long now_ans = 0;
	for (int i = 0; i < 200050; ++i) {
		now_ans = max(now_ans, go[i]);
	}
	int query;
	cin >> query;
	vector<long long> ans;
	REP(i, query) {
		long long a, b;
		cin >> a >> b;
		a--;
		for (int q = 0; q < 24; ++q) {
			go[a + q] += b - base[a];
			now_ans = max(now_ans, go[a + q]);
		}
		ans.push_back(now_ans);
		base[a] = b;
	}
	REP(i, ans.size()) {
		cout << ans[i] << endl;
	}
}
0