結果
問題 | No.1000 Point Add and Array Add |
ユーザー | fura |
提出日時 | 2020-07-25 18:23:47 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 168 ms / 2,000 ms |
コード長 | 947 bytes |
コンパイル時間 | 2,865 ms |
コンパイル使用メモリ | 197,280 KB |
最終ジャッジ日時 | 2025-01-12 05:37:10 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:29:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 29 | int n,q; scanf("%d%d",&n,&q); | ~~~~~^~~~~~~~~~~~~~ main.cpp:31:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 31 | rep(i,n) scanf("%lld",&a[i]); | ~~~~~^~~~~~~~~~~~~~ main.cpp:34:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 34 | rep(i,q) scanf(" %c%d%d",&type[i],&x[i],&y[i]), x[i]--; | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; using lint=long long; template<class G> class Fenwick_tree_dual{ vector<G> a; public: Fenwick_tree_dual(int n):a(n){} void add(int l,int r,const G& val){ if(l==0){ for(;r>0;r-=r&-r) a[r-1]+=val; return; } add(0,r,val); add(0,l,-val); } G sum(int i)const{ G res{}; for(i++;i<=a.size();i+=i&-i) res+=a[i-1]; return res; } }; int main(){ int n,q; scanf("%d%d",&n,&q); vector<lint> a(n); rep(i,n) scanf("%lld",&a[i]); vector<char> type(q); vector<int> x(q),y(q); rep(i,q) scanf(" %c%d%d",&type[i],&x[i],&y[i]), x[i]--; Fenwick_tree_dual<int> F(n); rep(i,q) if(type[i]=='B') F.add(x[i],y[i],1); vector<lint> res(n); rep(i,n) res[i]+=a[i]*F.sum(i); rep(i,q){ if(type[i]=='A'){ res[x[i]]+=lint(y[i])*F.sum(x[i]); } else{ F.add(x[i],y[i],-1); } } rep(i,n) printf("%lld%c",res[i],i<n-1?' ':'\n'); return 0; }