# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
463413 |
2021-08-11T06:11:59 Z |
tengiz05 |
Exam (eJOI20_exam) |
C++17 |
|
56 ms |
2284 KB |
#include <bits/stdc++.h>
using i64 = long long;
constexpr int N = 5005;
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int n;
std::cin >> n;
std::vector<int> a(n), b(n), c;
for (int i = 0; i < n; i++) {
std::cin >> a[i];
c.push_back(a[i]);
}
for (int i = 0; i < n; i++) {
std::cin >> b[i];
c.push_back(b[i]);
}
std::sort(c.begin(), c.end());
c.erase(std::unique(c.begin(), c.end()), c.end());
for (int i = 0; i < n; i++) {
a[i] = std::lower_bound(c.begin(), c.end(), a[i]) - c.begin();
b[i] = std::lower_bound(c.begin(), c.end(), b[i]) - c.begin();
}
if (n <= 5000) {
std::vector<int> dp(n + 1);
for (int i = 1; i <= n; i++) {
std::vector<int> cnt(c.size());
for (int j = i, mx = 0; j >= 1; j--) {
mx = std::max(mx, a[j - 1]);
cnt[b[j - 1]]++;
dp[i] = std::max(dp[i], dp[j - 1] + cnt[mx]);
}
for (int j = i, mx = 0; j >= 1; j--) {
mx = std::max(mx, a[j - 1]);
if (mx == b[j - 1]) {
dp[j] = std::max(dp[j], dp[j - 1] + 1);
}
}
}
std::cout << dp[n] << "\n";
} else {
if (std::count(b.begin(), b.end(), b[0]) == n) {
std::vector<int> t(n, 0);
for (int i = 0; i < n; i++) {
if (a[i] == b[0]) {
int j = i;
while (j >= 0 && a[j] <= b[0] && !t[j]) {
t[j--] = 1;
}
j = i + 1;
while (j < n && a[j] <= b[0] && !t[j]) {
t[j++] = 1;
}
}
}
std::cout << std::accumulate(t.begin(), t.end(), 0) << "\n";
} else {
}
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
276 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
332 KB |
Output is correct |
2 |
Correct |
7 ms |
844 KB |
Output is correct |
3 |
Correct |
31 ms |
2176 KB |
Output is correct |
4 |
Correct |
21 ms |
2284 KB |
Output is correct |
5 |
Correct |
56 ms |
2264 KB |
Output is correct |
6 |
Correct |
23 ms |
2280 KB |
Output is correct |
7 |
Correct |
31 ms |
2264 KB |
Output is correct |
8 |
Correct |
54 ms |
2276 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Incorrect |
2 ms |
204 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
460 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
276 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
0 ms |
276 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |