1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
| #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #define ll long long using namespace std; const int N=2e5+10; template<class T> inline void read(T &x) { x=0;bool f=0; char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=1;ch=getchar();} while(ch>='0'&&ch<='9')x=(x<<1)+(x<<3)+(ch^48),ch=getchar(); if(f)x=-x; } template<class T,class ...T1> inline void read(T &x,T1 &...x1) { read(x),read(x1...); }
int n,m; int a[N]; ll sum,c[N],pre[N],p[N]; inline int lowbit(int x) { return x&(-x); } inline void add(int x,ll k) { for(;x<=n;x+=lowbit(x)) c[x]+=k; } inline ll ask(int x) { ll res=0; for(;x;x-=lowbit(x)) res+=c[x]; return res; } int main() { read(n,m); for(int i=1;i<=n;i++) { read(a[i]); pre[i]=i-1-ask(a[i]); sum+=pre[i],p[pre[i]]++; add(a[i],1); } memset(c,0,sizeof(c)); add(1,sum); int res=0; for(int i=0;i<n;i++) { res+=p[i]; add(i+2,res-n); } for(int i=1;i<=m;i++) { int op,x; read(op,x); x=min(x,n-1); if(op==1) { swap(a[x],a[x+1]); swap(pre[x],pre[x+1]); if(a[x]<a[x+1]) { add(1,-1); pre[x]--; add(pre[x]+2,1); } else { add(1,1); add(pre[x+1]+2,-1); pre[x+1]++; } } else printf("%lld\n",ask(x+1)); } return 0; }
|