結果
| 問題 |
No.1000 Point Add and Array Add
|
| コンテスト | |
| ユーザー |
Ricky_pon
|
| 提出日時 | 2020-02-28 23:03:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,887 bytes |
| コンパイル時間 | 1,928 ms |
| コンパイル使用メモリ | 179,440 KB |
| 実行使用メモリ | 46,844 KB |
| 最終ジャッジ日時 | 2024-10-13 18:56:20 |
| 合計ジャッジ時間 | 6,054 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 WA * 17 |
ソースコード
#include <bits/stdc++.h>
#define For(i, a, b) for(int (i)=(int)(a); (i)<(int)(b); ++(i))
#define rFor(i, a, b) for(int (i)=(int)(a)-1; (i)>=(int)(b); --(i))
#define rep(i, n) For((i), 0, (n))
#define rrep(i, n) rFor((i), (n), 0)
#define fi first
#define se second
using namespace std;
typedef long long lint;
typedef unsigned long long ulint;
typedef pair<int, int> pii;
typedef pair<int, lint> pil;
typedef pair<lint, int> pli;
typedef pair<lint, lint> pll;
template<class T> bool chmax(T &a, const T &b){if(a<b){a=b; return true;} return false;}
template<class T> bool chmin(T &a, const T &b){if(a>b){a=b; return true;} return false;}
template<class T> T div_floor(T a, T b){
if(b < 0) a *= -1, b *= -1;
return a>=0 ? a/b : (a+1)/b-1;
}
template<class T> T div_ceil(T a, T b){
if(b < 0) a *= -1, b *= -1;
return a>0 ? (a-1)/b+1 : a/b;
}
constexpr lint mod = 1e9+7;
constexpr lint INF = mod * mod;
constexpr int MAX = 200010;
struct SegTree_dual{
int sz = 1;
vector<vector<int>> node;
SegTree_dual(int sz_){
while(sz < sz_) sz <<= 1;
node.resize(sz << 1);
}
void update(int l, int r, int t){
for(l+=sz, r+=sz; l<r; l>>=1, r>>=1){
if(l&1){
node[l].push_back(t);
l++;
}
if(r&1){
--r;
node[r].push_back(t);
}
}
}
lint query(int i, lint a, vector<int> &b, vector<lint> &v){
lint ret = 0;
vector<int> cnt(b.size() + 1, 0);
i+=sz;
ret += a * node[i].size();
if(!node[i].empty()){
rep(j, b.size()){
int tmp = node[i].end() - lower_bound(node[i].begin(), node[i].end(), b[j]);
cnt[0] += tmp;
cnt[j+1] -= tmp;
}
}
i >>= 1;
while(i){
ret += a * node[i].size();
if(!node[i].empty()){
rep(j, b.size()){
int tmp = node[i].end() - lower_bound(node[i].begin(), node[i].end(), b[j]);
cnt[0] += tmp;
cnt[j+1] -= tmp;
}
}
i>>=1;
}
partial_sum(cnt.begin(), cnt.end(), cnt.begin());
rep(j, v.size()) ret += v[j] * cnt[j];
return ret;
}
};
int main(){
int n, q;
scanf("%d%d", &n, &q);
lint a[n];
rep(i, n) scanf("%lld", &a[i]);
SegTree_dual st(n);
vector<vector<int>> b(n, vector<int>(0));
vector<vector<lint>> v(n, vector<lint>(0));
rep(i, q){
char c;
int x;
lint y;
scanf(" %c%d%lld", &c, &x, &y);
--x;
if(c == 'A'){
b[x].push_back(i);
v[x].push_back(y);
}
else{
st.update(x, y, i);
}
}
rep(i, n) printf("%lld ", st.query(i, a[i], b[i], v[i]));
}
Ricky_pon