#include using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x)+modulo)%modulo) #define Inf 100000000 template struct segtree{ //元データx[i]はv[n+i] //v[i]の親はv[i/2],子はv[i*2]とv[i*2+1] F func; vector v; int n; const T init_value = Inf; segtree(int sz,F f):func(f){ n=1; while(true){ if(n>=sz)break; n*=2; } v.resize(2*n,init_value); for(int i=n-1;i>=0;i--){ v[i]=func(v[i<<1],v[(i<<1)+1]); } } segtree(vector &x,F f):func(f){ n=1; while(true){ if(n>=x.size())break; n*=2; } v.resize(2*n,init_value); for(int i=0;i=0;i--){ v[i]=func(v[i<<1],v[(i<<1)+1]); } } void update(int x,T val){ x+=n; v[x]=val; while(x>0){ x>>=1; v[x]=func(v[x<<1],v[(x<<1)+1]); } } //区間[l,r)におけるクエリ処理 T query(int l,int r){ if(l>=r)return init_value; l+=n; r+=n; T res1 = init_value; T res2 = init_value; while(true){ if(l&1){ res1=func(res1,v[l++]); } if(r&1){ res2=func(v[--r],res2); } if(l>=r)break; l>>=1;r>>=1; } return func(res1,res2); } void show(){ int n = 1; for(int i=1;i P){ int N = P.size(); vector V(N); for(int i=0;i seg(N,f); vector> next(20,vector(N,Inf)); for(int i=N-1;i>=0;i--){ int ind = V[i]; next[0][V[i]] = seg.query(ind,N); seg.update(ind,ind); } for(int i=1;i<20;i++){ for(int j=0;j1){ int mid = (ok+ng)/2; if(seg.query(V[i],mid)==i)ok = mid; else ng = mid; //cout<=0;j--){ if(next[j][pos] < ok){ pos = next[j][pos]; add |= (1<>N; vector P(N); for(int i=0;i>P[i]; P[i]--; } long long ans = get(P); //cout<