OTZ做出题目的神犇..断断续续改完了在这里存一下思路吧 A题:第K大区间题意:定义一个区间的值为其众数出现的次数.现给出n个数,求将所有区间的值排序后,第K大的值为多少. 分析:二分答案mid,任务就是判定有多少个区间的众数≥mid. #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 100010; int n, A[maxn], c[maxn], cnt[maxn], m…