传送门 题目分析 标准主席树,按照位置插入每个数,对于询问l, r, 在l-1,r两树上按照线段树搜索次数大于(r - l + 1) / 2的数. code #include<bits/stdc++.h> using namespace std; const int N = 500050, M = 500050; int n, m; int a[N]; struct node{ int lc, rc, cnt; }tr[N * 25]; int pool, rt[N]; namespace I…