이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//srand(time(0)) - always changing
//order_of_key(k): Number of items strictly smaller than k .
//find_by_order(k): K-th element in a set (counting from zero).
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
using namespace std;
int n, ans = 0;
vector <int> a, b;
map <vector <int>, bool> was;
void rec(vector <int> a) {
if (was[a]) return;
else was[a] = 1;
for (int i = 0; i < n - 1; i++) {
int mn = a[i];
int mx = a[i];
for (int j = i + 1; j < n; j++) {
mn = min(mn, a[j]);
mx = max(mx, a[j]);
if (mn < mx) {
vector <int> act = a;
for (int k = i; k <= j; k++) {
act[k] = mx;
}
rec(act);
}
}
}
int cnt = 0;
for (int i = 0; i < n; i++) {
if (a[i] == b[i]) cnt++;
}
ans = max(ans, cnt);
}
void solve() {
cin >> n;
for (int i = 1; i <= n; i++) {
int x;
cin >> x;
a.push_back(x);
}
for (int i = 1; i <= n; i++) {
int x;
cin >> x;
b.push_back(x);
}
rec(a);
cout << ans;
}
const bool Cases = 0;
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int TT = 1;
if (Cases) cin >> TT;
while (TT--) {
solve();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |