ICPC2018徐州網路賽 H.Ryuji doesn't want to study ( 樹狀陣列
題意:
求 KaTeX parse error: No such environment: equation* at position 7: \begin{̲e̲q̲u̲a̲t̲i̲o̲n̲*̲}̲ \sum_{i=l}^ra_…
考慮化簡公式 利用字首和 化簡為KaTeX parse error: No such environment: equation* at position 7: \begin{̲e̲q̲u̲a̲t̲i̲o̲n̲*̲}̲ \sum_{i=l}^ra_… - KaTeX parse error: No such environment: equation* at position 7: \begin{̲e̲q̲u̲a̲t̲i̲o̲n̲*̲}̲ (n-r)*\sum_{i=…
這樣只需要考慮維護兩個數的字首和就可以了
#include <bits/stdc++.h>
using namespace std;
#define cpp_io() {ios::sync_with_stdio(false); cin.tie(NULL);}
#define rep(i,a,n) for (int i=a;i<n;i++)
#define repp(i,a,n) for (int i=a;i<=n;i++)
#define per(i,a,n) for (int i=n-1;i>=a;i--)
#define CLR(a,b) memset(a,(b),sizeof(a))
#define all(x) (x).begin(),(x).end()
#define SZ(x) ((int)(x).size())
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define ls o<<1
#define rs o<<1|1
typedef long long ll;
typedef vector<int> VI;
const int MAXN = (int)2e5+10;
const int INF = 0x3f3f3f3f;
const int mod = (int)998244353;
ll a[MAXN], c[MAXN], cc[MAXN], n, q;
ll lowbit(ll x) { return x&-x; }
ll query(ll p) {ll res=0; while(p) res+=c[p],p-=lowbit(p); return res;}
void add(ll x,ll p) { while(p<=n) c[p]+=x, p+=lowbit(p); }
ll query_1(ll p) {ll res=0; while(p) res+=cc[p],p-=lowbit(p); return res;}
void add_1(ll x,ll p) { while(p<=n) cc[p]+=x, p+=lowbit(p); }
int main() {
cpp_io();
cin>>n>>q;
for(ll i=1;i<=n;++i) {
cin>>a[i];
add(a[i],i*1LL); add_1(1LL*a[i]*(n-i+1),i*1LL);
}
while(q--){
ll op,l,r;
cin>>op>>l>>r;
if(op==1){
cout<<1LL*(query_1(r)-query_1(l-1)-((n-r)*(query(r)-query(l-1))))<<endl;
}
else {
add(r-a[l],l);
add_1(1LL*(r-a[l])*(n-l+1),l);
a[l]=r;
}
}
return 0;
}
相關文章
- 2018 icpc徐州站網路賽 H Ryuji doesn't want to study
- T4701 【卜卜】樹狀陣列模板陣列
- 樹狀陣列陣列
- 解析樹狀陣列陣列
- 樹狀陣列詳解陣列
- 樹狀陣列基礎陣列
- poj 2481 樹狀陣列陣列
- hdu 3874 樹狀陣列陣列
- 二維樹狀陣列陣列
- 2018 徐州網路賽 G 題解
- ACM-ICPC 2018 徐州賽區網路預賽ACM
- 樹狀陣列模板題 & (樹狀陣列 1:單點修改,區間查詢)陣列
- 樹狀陣列和逆序對陣列
- hdu 5147 樹狀陣列陣列
- 【筆記/模板】樹狀陣列筆記陣列
- 樹狀陣列快速入門陣列
- 樹狀陣列模板+習題集陣列
- 樹狀陣列3種基本操作陣列
- 學習筆記----樹狀陣列筆記陣列
- 樹狀陣列upc1976陣列
- CSU 4441 Necklace (樹狀陣列/LIS)陣列
- 樹狀陣列(我是真小白)陣列
- 資料結構——樹狀陣列資料結構陣列
- HNOI2016網路(整體二分+樹狀陣列)陣列
- 線段樹+差分——【模板】樹狀陣列2陣列
- hdu 4836 The Query on the Tree(線段樹or樹狀陣列)陣列
- hdu5489 ||2015合肥網路賽1006 dp+離散化樹狀陣列優化陣列優化
- 10:Challenge 3(樹狀陣列直接修改)陣列
- POJ 3928 Ping pong(樹狀陣列)陣列
- HDU 1556 Color the ball(線段樹|樹狀陣列)陣列
- CF 293 E Close Vertices (樹的分治+樹狀陣列)陣列
- HDU 1166 敵兵佈陣 (樹狀陣列)陣列
- HDU 1166 敵兵佈陣(樹狀陣列)陣列
- 洛谷題單指南-二叉堆與樹狀陣列-P3368 【模板】樹狀陣列 2陣列
- POJ 2352(順路講解一下樹狀陣列)陣列
- ACM-ICPC 2018 徐州賽區網路預賽 F. Features TrackACM
- POJ-2352 Stars(樹狀陣列)陣列
- 【luogu3368】模板 樹狀陣列 2陣列