# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
764170 |
2023-06-23T08:13:56 Z |
vjudge1 |
Exam (eJOI20_exam) |
C++14 |
|
2 ms |
340 KB |
//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() {
bool sub1 = true;
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);
if (i > 1) {
if (b[i] != b[i - 1]) sub1 = false;
}
}
sub1 = true;
if (sub1) {
for (int i = 0; i < n; i++) {
if (a[i] != b[i]) continue;
for (int j = i - 1; j >= 0; j--) {
if (a[j] >= a[i]) break;
a[j] = a[i];
}
for (int j = i + 1; i < n; i++) {
if (a[j] >= a[i]) break;
a[j] = a[i];
}
}
int cnt = 0;
for (int i = 0; i < n; i++) {
if (a[i] == b[i]) cnt++;
}
cout << cnt;
return;
}
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 |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |