結果
問題 | No.1000 Point Add and Array Add |
ユーザー | recososo |
提出日時 | 2020-02-29 15:26:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 247 ms / 2,000 ms |
コード長 | 2,144 bytes |
コンパイル時間 | 1,604 ms |
コンパイル使用メモリ | 173,984 KB |
実行使用メモリ | 9,728 KB |
最終ジャッジ日時 | 2024-10-13 20:01:42 |
合計ジャッジ時間 | 5,294 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 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 | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 4 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | AC | 172 ms
8,320 KB |
testcase_17 | AC | 143 ms
7,040 KB |
testcase_18 | AC | 240 ms
9,728 KB |
testcase_19 | AC | 237 ms
9,728 KB |
testcase_20 | AC | 229 ms
9,728 KB |
testcase_21 | AC | 247 ms
9,728 KB |
testcase_22 | AC | 237 ms
9,728 KB |
testcase_23 | AC | 241 ms
9,728 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; template< typename T > struct BIT { int N; int max_2beki; vector< T > data; // 初期化 1-indexedでデータを管理する 0で初期化 BIT(int size){ N = ++size; data.assign(N, 0); max_2beki = 1; while(max_2beki * 2 <= N) max_2beki *= 2; } // [0,k](閉区間)の総和 閉区間に注意! T sum(int k) { if(k < 0) return 0; // k<0のとき0を返す T ret = 0; for(++k; k > 0; k -= k & -k) ret += data[k]; return (ret); } // [l,r](閉区間)の総和 inline T sum(int l,int r){ return sum(r) - sum(l-1); } // 一点取得 更新はできないことに注意 inline T operator[](int k){ return sum(k) - sum(k-1); } // data[k] += x; void add(int k, T x) { for(++k; k < N; k += k & -k) data[k] += x; } // imos法 [l,r]にxを加算 void imos(int l,int r,T x){ add(l , x); add(r + 1 , -x); } // lower_bound sum(i)がval以上となる最小のi int lower_bound(T w){ if(w <= 0) return 0; int x = 0; for(int k = max_2beki; k > 0; k /= 2){ if(x+k <= N - 1 && data[x + k] < w){ w -= data[x + k]; x += k; } } return x; } // upper_bound sum(i)がvalより大きくなる最小のi int upper_bound(T w){ if(w < 0) return 0; int x = 0; for(int k = max_2beki; k > 0; k /= 2){ if(x+k <= N - 1 && data[x + k] <= w){ w -= data[x + k]; x += k; } } return x; } }; int main(){ int n,q;cin >> n >> q; vector<ll> a(n); for(int i=0;i<n;i++){ cin >> a[i]; } vector<char> c(q); vector<int> x(q),y(q); for(int i=0;i<q;i++){ cin >> c[i] >> x[i] >> y[i]; if(c[i]=='B'){ y[i]--; } x[i]--; } vector<ll> b(n); BIT<ll> bit(n+10); for(int i=q-1;i>=0;i--){ if(c[i]=='A'){ b[x[i]]+=bit.sum(x[i])*y[i]; } else{ bit.imos(x[i],y[i],1); } } for(int i=0;i<n;i++){ cout << b[i]+a[i]*bit.sum(i) << " "; } cout << endl; }