0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:25:28 +00:00
OI-codes/Luogu/P1439/P1439.cpp

43 lines
724 B
C++

#include <iostream>
#include <algorithm>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1e5 + 5;
int n, cnt, a[N], b[N], c[N], p[N], f[N];
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i];
p[a[i]] = i;
}
for (int i = 1; i <= n; i++) {
cin >> b[i];
}
for (int i = 1; i <= n; i++) {
if (p[b[i]] > c[cnt]) {
c[++cnt] = p[b[i]];
f[i] = cnt;
} else {
int k = std::lower_bound(c + 1, c + cnt + 1, p[b[i]]) - c;
c[k] = p[b[i]];
f[i] = k;
}
}
cout << cnt << endl;
return 0;
}