1 10 1 1 4 2 3 5 6 7 8 9 0 1 3 2
2
#include#include #include #include #include #include #include using namespace std; const int maxn = 100000+10; struct node{ int lson,rson; int mid(){ return (lson+rson)>>1; } }tree[maxn*4]; int seg[25][maxn]; int lftnum[25][maxn]; int num[maxn]; int n,m,sta,ed; void build(int L,int R,int rt,int dep){ tree[rt].lson = L; tree[rt].rson = R; if(L==R) return; int mid = tree[rt].mid(),key = num[mid],scnt = mid-L+1;//左邊中間值的個數 for(int i = L; i <= R ; i++){ if(seg[dep][i] < num[mid]){ scnt--; } } int lp = L,rp = mid+1; for(int i = L; i <= R; i++){ if(i==L){ lftnum[dep][i] = 0; }else{ lftnum[dep][i] = lftnum[dep][i-1]; } if(seg[dep][i] < key){ lftnum[dep][i]++; seg[dep+1][lp++] = seg[dep][i]; } else if(seg[dep][i] > key){ seg[dep+1][rp++] = seg[dep][i]; } else{ if(scnt>0){ scnt--; lftnum[dep][i]++; seg[dep+1][lp++] = seg[dep][i]; }else{ seg[dep+1][rp++] = seg[dep][i]; } } } build(L,mid,rt<<1,dep+1); build(mid+1,R,rt<<1|1,dep+1); } int query(int L,int R,int rt,int dep,int k){ if(tree[rt].lson==tree[rt].rson){ return seg[dep][L]; } int cnt,act; if(L==tree[rt].lson){ cnt = lftnum[dep][R]; act = 0; }else{ cnt = lftnum[dep][R] - lftnum[dep][L-1]; act = lftnum[dep][L-1]; } int mid = tree[rt].mid(); if(cnt >= k){ L = tree[rt].lson + act; R = tree[rt].lson + act + cnt-1; return query(L,R,rt<<1,dep+1,k); }else{ int a = L-tree[rt].lson-act; int b = R-L-cnt+1; L = mid + a + 1; R = mid + a + b; return query(L,R,rt<<1|1,dep+1,k-cnt); } } int main(){ int ncase; cin >> ncase; while(ncase--){ cin >> n >> m; for(int i = 1; i <= n; i++){ scanf("%d",&num[i]); seg[0][i] = num[i]; } sort(num+1,num+n+1); build(1,n,1,0); while(m--){ int k; scanf("%d%d%d",&sta,&ed,&k); printf("%d\n",query(sta,ed,1,0,k)); } } return 0; }