0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 15:45:26 +00:00

1263. 【例9.7】友好城市

http://ybt.ssoier.cn:8088/statusx.php?runidx=15563557
This commit is contained in:
Baoshuo Ren 2022-04-02 10:03:00 +08:00
parent 69b14c7514
commit cc7a253952
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

34
ybt/1263/1263.cpp Normal file
View File

@ -0,0 +1,34 @@
#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);
for (int i = 1; i <= n; i++) {
f[i] = 1;
for (int j = 1; j < i; j++) {
if (a[j].second < a[i].second) f[i] = std::max(f[i], f[j] + 1);
}
ans = std::max(ans, f[i]);
}
cout << ans << endl;
return 0;
}