#pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include // #include // #include // #include // using namespace __gnu_pbds; // #include // namespace multiprecisioninteger = boost::multiprecision; // using cint=multiprecisioninteger::cpp_int; using namespace std; using ll=long long; #define double long double using datas=pair; using ddatas=pair; using tdata=pair; using vec=vector; using mat=vector; using pvec=vector; using pmat=vector; // using llset=tree,rb_tree_tag,tree_order_statistics_node_update>; #define For(i,a,b) for(i=a;i<(ll)b;++i) #define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i) #define rep(i,N) For(i,0,N) #define rep1(i,N) For(i,1,N) #define brep(i,N) bFor(i,N,0) #define brep1(i,N) bFor(i,N,1) #define all(v) (v).begin(),(v).end() #define allr(v) (v).rbegin(),(v).rend() #define vsort(v) sort(all(v)) #define vrsort(v) sort(allr(v)) #define uniq(v) vsort(v);(v).erase(unique(all(v)),(v).end()) #define endl "\n" #define eb emplace_back #define print(x) cout< ostream& operator<<(ostream& os,const pair& p){return os<<"("< ostream& operator<<(ostream& os,const vector& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< ostream& operator<<(ostream& os,const set& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< inline bool chmax(T& a,T b){bool x=a inline bool chmin(T& a,T b){bool x=a>b;if(x)a=b;return x;} #ifdef DEBUG void debugg(){cout<void debugg(const T& x,const Args&... args){cout<<" "<0){ if(n&1)res=res*a%m; a=a*a%m; n>>=1; } return res; } ll gcd(ll a,ll b){if(!b)return abs(a);return (a%b==0)?abs(b):gcd(b,a%b);} ll lcm(ll a,ll b){return a/gcd(a,b)*b;} ll countdigits(ll n,ll k=10){ ll ans=0; while(n){n/=k;ans++;} return ans; } ll sumdigits(ll n,ll k=10){ ll ans=0; while(n){ans+=n%k;n/=k;} return ans; } template struct BinaryIndexedTree{ int size,bitn=0; T I; using func=function; func F; vector tree; BinaryIndexedTree(int N,T e,func f):size(N+1),I(e),F(f),tree(size,e){} BinaryIndexedTree(int N):size(N+1),I(0),F([](T a,T b){return a+b;}),tree(size,0){} void act(int i,T x){ for(++i;i0;i-=-i&i){ res=F(tree[i],res); } return res; } //sum([l,r)); T sum(int l,int r){ // if(--l>--r)return 0; assert(--l<=--r); if(l<0)return queli(r); else return queli(r)-queli(l); } //only(N,+) int lower_bound(int x){ int i=0; if(!bitn){ i=size;bitn=1; while(i){ i>>=1;bitn<<=1; } i=0; } for(int k=bitn;k;k>>=1){ if(i+k>codeforces;while(codeforces--){ ll i,j; cin>>N; vec v(N); pvec S,T; rep(i,N){ cin>>v[i]; --v[i]; } if(v[0] tree(N+1); for(auto [x,y]:S){ ans+=tree.sum(x,N); tree.act(y,1); } debug(ans); } { BinaryIndexedTree tree(N+1); for(auto [x,y]:T){ ans+=tree.sum(0,x+1); tree.act(y,1); } } vector vv; for(auto [x,y]:S){ vv.eb(y,datas(x,1)); } for(auto [x,y]:T){ vv.eb(x,datas(y,-1)); } vsort(vv); BinaryIndexedTree tree(N+1); for(auto [x,y]:vv){ if(y.second>0){ ans+=tree.sum(0,y.first+1); }else{ tree.act(y.first,1); } } print(ans); // } }