# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1104209 | 2024-10-23T08:58:50 Z | manhlinh1501 | Exam (eJOI20_exam) | C++17 | 71 ms | 77896 KB |
#include<bits/stdc++.h> using namespace std; using i64 = long long; const int MAXN = 2e5 + 5; #define left ___left #define right ___right #define ALL(a) (a).begin(), (a).end() using pii = pair<int, int>; int N; int a[MAXN]; int b[MAXN]; void compress() { map<int, int> comp; for(int i = 1; i <= N; i++) comp[a[i]] = 1; for(int i = 1; i <= N; i++) comp[b[i]] = 1; int c = 0; for(auto &[x, y] : comp) y = ++c; for(int i = 1; i <= N; i++) a[i] = comp[a[i]]; for(int i = 1; i <= N; i++) b[i] = comp[b[i]]; } namespace subtask2 { bool is_subtask() { for(int i = 1; i < N; i++) { if(b[i] != b[i + 1]) return false; } return true; } int left[MAXN]; int right[MAXN]; int cnt[MAXN]; void solution() { if(is_subtask() == false) return; for(int i = 1; i <= N; i++) { left[i] = i - 1; while(left[i] > 0 and a[left[i]] <= a[i]) left[i] = left[left[i]]; } for(int i = N; i >= 1; i--) { right[i] = i + 1; while(right[i] <= N and a[right[i]] <= a[i]) right[i] = right[right[i]]; } for(int i = 1; i <= N; i++) { left[i]++; right[i]--; } for(int i = 1; i <= N; i++) { if(a[i] == b[i]) { cnt[left[i]]++; cnt[right[i] + 1]--; } } for(int i = 1; i <= N; i++) cnt[i] += cnt[i - 1]; int ans = 0; for(int i = 1; i <= N; i++) ans += (cnt[i] > 0); cout << ans; exit(0); } } namespace subtask3 { const int MAXN = 5e3 + 5; bool is_subtask() { return is_sorted(a + 1, a + N + 1); } int dp[MAXN][MAXN]; void solution() { if(is_subtask() == false) return; for(int i = 1; i <= N; i++) { for(int j = 1; j <= i; j++) { dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]); if(a[i] == b[j]) dp[i][j] = max(dp[i][j], max(dp[i - 1][j - 1], dp[i][j - 1]) + 1); } } int ans = 0; for(int i = 1; i <= N; i++) { for(int j = 1; j <= i; j++) ans = max(ans, dp[i][j]); } cout << ans; exit(0); } } namespace subtask4 { const int LOGN = 20; bool is_subtask() { vector<int> b; for(int i = 1; i <= N; i++) b.emplace_back(a[i]); sort(ALL(b)); for(int i = 1; i < N; i++) { if(b[i] == b[i - 1]) return false; } return true; } void solution() { if(is_subtask() == false) return; exit(0); } } namespace subtask6 { const int MAXN = 5e3 + 5; int dp[MAXN][MAXN]; int left[MAXN]; int right[MAXN]; bool is_subtask() { return N < MAXN; } void solution() { if(is_subtask() == false) return; for(int i = 1; i <= N; i++) { left[i] = i - 1; while(left[i] > 0 and a[left[i]] <= a[i]) left[i] = left[left[i]]; } for(int i = N; i >= 1; i--) { right[i] = i + 1; while(right[i] <= N and a[right[i]] <= a[i]) right[i] = right[right[i]]; } for(int i = 1; i <= N; i++) { left[i]++; right[i]--; } for(int i = 1; i <= N; i++) { for(int j = 1; j <= N; j++) { dp[i][j] = max(dp[i - 1][j], dp[i][j - 1]); if(a[i] == b[j] and left[i] <= j and j <= right[i]) dp[i][j] = max(dp[i][j], max(dp[i - 1][j - 1], dp[i][j - 1]) + 1); } } int ans = 0; for(int i = 1; i <= N; i++) { for(int j = 1; j <= i; j++) ans = max(ans, dp[i][j]); } cout << ans; exit(0); } } signed main() { #define task "code" if(fopen(task".inp", "r")) { freopen(task".inp", "r", stdin); freopen(task".out", "w", stdout); } ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> N; for(int i = 1; i <= N; i++) cin >> a[i]; for(int i = 1; i <= N; i++) cin >> b[i]; compress(); // for(int i = 1; i <= N; i++) cout << a[i] << " "; // cout << "\n"; // for(int i = 1; i <= N; i++) cout << b[i] << " "; // cout << "\n"; subtask2::solution(); subtask3::solution(); subtask4::solution(); subtask6::solution(); return (0 ^ 0); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 2384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 4604 KB | Output is correct |
2 | Correct | 5 ms | 5036 KB | Output is correct |
3 | Correct | 35 ms | 10056 KB | Output is correct |
4 | Correct | 10 ms | 5200 KB | Output is correct |
5 | Correct | 71 ms | 11592 KB | Output is correct |
6 | Correct | 13 ms | 5348 KB | Output is correct |
7 | Correct | 17 ms | 5492 KB | Output is correct |
8 | Correct | 63 ms | 9672 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 2384 KB | Output is correct |
2 | Correct | 4 ms | 4944 KB | Output is correct |
3 | Correct | 17 ms | 21840 KB | Output is correct |
4 | Correct | 52 ms | 73800 KB | Output is correct |
5 | Correct | 65 ms | 77896 KB | Output is correct |
6 | Correct | 55 ms | 77896 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 2640 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 2384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 2384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |