mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 20:48:48 +00:00
parent
ef8275fc7a
commit
7b3f37a540
@ -1,29 +1,42 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <algorithm>
|
||||||
|
|
||||||
using std::cin;
|
using std::cin;
|
||||||
using std::cout;
|
using std::cout;
|
||||||
using std::endl;
|
const char endl = '\n';
|
||||||
|
|
||||||
const int N = 10005;
|
const int N = 1e5 + 5;
|
||||||
|
|
||||||
int n, a[N], b[N], f[N][N];
|
int n, cnt, a[N], b[N], c[N], p[N], f[N];
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
|
std::ios::sync_with_stdio(false);
|
||||||
|
cin.tie(nullptr);
|
||||||
|
|
||||||
cin >> n;
|
cin >> n;
|
||||||
|
|
||||||
for (int i = 1; i <= n; i++) {
|
for (int i = 1; i <= n; i++) {
|
||||||
cin >> a[i];
|
cin >> a[i];
|
||||||
|
|
||||||
|
p[a[i]] = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 1; i <= n; i++) {
|
for (int i = 1; i <= n; i++) {
|
||||||
cin >> b[i];
|
cin >> b[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 1; i <= n; i++) {
|
for (int i = 1; i <= n; i++) {
|
||||||
for (int j = 1; j <= n; j++) {
|
if (p[b[i]] > c[cnt]) {
|
||||||
f[i][j] = std::max(f[i - 1][j], f[i][j - 1]);
|
c[++cnt] = p[b[i]];
|
||||||
if (a[i] == b[j]) {
|
f[i] = cnt;
|
||||||
f[i][j] = std::max(f[i][j], f[i - 1][j - 1] + 1);
|
} else {
|
||||||
}
|
int k = std::lower_bound(c + 1, c + cnt + 1, p[b[i]]) - c;
|
||||||
|
c[k] = p[b[i]];
|
||||||
|
f[i] = k;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cout << f[n][n] << endl;
|
|
||||||
|
cout << cnt << endl;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user