結果
問題 | No.1000 Point Add and Array Add |
ユーザー | ゆきのん |
提出日時 | 2020-02-28 21:47:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 511 ms / 2,000 ms |
コード長 | 2,185 bytes |
コンパイル時間 | 1,715 ms |
コンパイル使用メモリ | 180,944 KB |
実行使用メモリ | 29,696 KB |
最終ジャッジ日時 | 2024-10-13 17:13:20 |
合計ジャッジ時間 | 6,907 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 5 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 5 ms
5,248 KB |
testcase_15 | AC | 5 ms
5,248 KB |
testcase_16 | AC | 346 ms
25,088 KB |
testcase_17 | AC | 282 ms
17,152 KB |
testcase_18 | AC | 483 ms
29,568 KB |
testcase_19 | AC | 490 ms
29,696 KB |
testcase_20 | AC | 511 ms
27,264 KB |
testcase_21 | AC | 407 ms
23,040 KB |
testcase_22 | AC | 510 ms
27,904 KB |
testcase_23 | AC | 403 ms
23,808 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define fs first #define sc second #define pb push_back #define mp make_pair #define eb emplace_back #define ALL(A) A.begin(),A.end() #define RALL(A) A.rbegin(),A.rend() typedef long long LL; typedef pair<LL,LL> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;} const LL mod=1000000007; const LL LINF=1LL<<62; const int INF=1<<30; int dx[]={1,0,-1,0,1,-1,1,-1}; int dy[]={0,1,0,-1,1,-1,-1,1}; static const int MAX_SIZE = 1 << 20; LL segMax[2 * MAX_SIZE - 1], segAdd[2 * MAX_SIZE - 1]; //区間[a, b)に値xを加算する. void add(int a, int b, LL x, int k = 0, int l = 0, int r = MAX_SIZE) { if (r <= a || b <= l) return; if (a <= l && r <= b){ segAdd[k] += x; return; } add(a, b, x, k * 2 + 1, l, (l + r) / 2); add(a, b, x, k * 2 + 2, (l + r) / 2, r); segMax[k] = max(segMax[k * 2 + 1] + segAdd[k * 2 + 1], segMax[k * 2 + 2] + segAdd[k * 2 + 2]); } LL getMax(int a, int b, int k = 0, int l = 0, int r = MAX_SIZE) { if (r <= a || b <= l) return 0; if (a <= l && r <= b) return (segMax[k] + segAdd[k]); LL left = getMax(a, b, k * 2 + 1, l, (l + r) / 2); LL right = getMax(a, b, k * 2 + 2, (l + r) / 2, r); return (max(left, right) + segAdd[k]); } int main(){ int n,q;cin >> n >> q; vector<LL> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } vector<LL> ans(n,0); map<int,vector<P>> m; while(q--){ char c;cin >> c; LL x,y;cin >> x >> y; x--; if(c=='A'){ auto t = getMax(x,x+1); m[x].pb(mp(t,y)); } else{ add(x,y,1); } } for (int i = 0; i < n; i++) { auto t = getMax(i,i+1); ans[i] = t * a[i]; for (int j = 0; j < m[i].size(); j++) { ans[i] += (t - m[i][j].fs) * m[i][j].sc; } } for (int i = 0; i < n; i++) { cout << ans[i] << (i == n-1?"\n":" "); } return 0; }