#include<bits/stdc++.h> using namespace std; #define lowbit(x) x&(-x) #define endl '\n' int n; int a[2000005]; inline int read(){ char c = getchar();int x =0; while(c<'0' or c>'9')c = getchar(); while('0'<=c and c<='9')x= x*10+(c^48),c = getchar(); return x; }int ls[200000...