結果
問題 | No.865 24時間降水量 |
ユーザー | roundplus |
提出日時 | 2019-10-04 13:22:37 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,436 bytes |
コンパイル時間 | 988 ms |
コンパイル使用メモリ | 141,920 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-07 19:37:18 |
合計ジャッジ時間 | 3,223 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 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 | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
ソースコード
#include <cstdio> #include <iostream> #include <iomanip> #include <functional> #include <algorithm> #include <string> #include <vector> #include <limits> #include <numeric> #include <queue> #include <cmath> #include <set> #include <map> using namespace std; #define INFint (1<<30) #define BOUND 27182818284 #define MAT 2 typedef long long ll; typedef long long int lli; typedef pair<ll, ll> P; ll MOD = 1000000007; const ll INF = (1ll<<60); #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define repi(i, a, b) for(int i=int(a);i<int(b);++i) template<class T> bool umax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template<class T> bool umin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; } // gcd template<typename T> T gcd(T a, T b) { if (a == 0) return b; return gcd(b % a, a); } int findGCD(int arr[], int n) { int result = arr[0]; for (int i = 1; i < n; i++) result = gcd(arr[i], result); return result; } template<typename T> T lcm(T m, T n) { // 引数に0がある場合は0を返す if ((0 == m) || (0 == n)) return 0; return ((m / gcd(m, n)) * n); // lcm = m * n / gcd(m,n) } template<typename A, size_t N, typename T> void Fill(A (&array)[N], const T &val) { fill((T *) array, (T *) (array + N), val); } int dx[5] = {1, 0, -1, 0}; int dy[5] = {0, 1, 0, -1}; // v.front() = -BOUND; // v.back() = BOUND; //struct edge{ // int cost, to; // // edge(int in_cost, int in_to){ // cost=in_cost; // to=in_to; // } // bool operator<(const edge &a) const // { // return cost > a.cost; // } //}; int main() { int N; cin >> N; vector<int>A(N+24, 0); rep(i,N) cin >> A[i]; int Q; cin >> Q; vector<int>T(Q); vector<int>V(Q); rep(i,Q) { cin >> T[i] >> V[i]; T[i]--; } vector<int>sum(N+24,0); rep(i,24){ sum[0]+=A[i]; } int maximum=sum[0]; for(int i=1; i<N; i++){ sum[i]=sum[i-1]-A[i-1]+A[i+23]; maximum=max(sum[i], maximum); } for(int i=0; i<Q; i++){ int count=0; for(int time=T[i]; time>=0 && count<24 ; time--, count++){ sum[time]+=(V[i]-A[T[i]]); maximum=max(maximum, sum[time]); } A[T[i]]=V[T[i]]; cout << maximum << endl; } return 0; }