#include<bits/stdc++.h> using namespace std; const int maxn=2e5+10; typedef long long ll; ll lb(ll x){ return x&(-x); } int cnt; struct ac{ ll v,lb,id; }a[maxn]; bool all(){ for(int i=2;i<=cnt;++i){ if(a[i].lb!=a[i-1].lb) return false; } return true; } map<...