0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-10 00:18:48 +00:00

P2782 友好城市

R72299495
This commit is contained in:
Baoshuo Ren 2022-03-25 19:24:26 +08:00
parent 9b6c6b4a18
commit ac35864e57
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

33
Luogu/P2782/P2782.cpp Normal file
View File

@ -0,0 +1,33 @@
#include <algorithm>
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 2e5 + 5;
int n, f[N], ans;
std::pair<int, int> a[N];
int main() {
std::ios::sync_with_stdio(false);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i].first >> a[i].second;
}
std::sort(a + 1, a + n + 1);
f[++ans] = a[1].second;
for (int i = 2; i <= n; i++) {
int k = std::upper_bound(f + 1, f + ans + 1, a[i].second) - f;
f[k] = a[i].second;
if (k > ans) ans++;
}
cout << ans << endl;
return 0;
}