mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 16:18:48 +00:00
26 lines
440 B
C++
26 lines
440 B
C++
#include <algorithm>
|
|
#include <iostream>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
const int N = 1000005;
|
|
|
|
int n, k, a, b, s[N], f[N];
|
|
|
|
int main() {
|
|
cin >> n >> k;
|
|
for (int i = 1; i <= k; i++) {
|
|
cin >> a >> b;
|
|
s[a] += 1;
|
|
s[b + 1] -= 1;
|
|
}
|
|
for (int i = 1; i <= n; i++) {
|
|
f[i] = f[i - 1] + s[i];
|
|
}
|
|
std::sort(f + 1, f + 1 + n);
|
|
cout << f[n / 2 + 1] << endl;
|
|
return 0;
|
|
}
|