This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/**
* author: milos
* created: 16.04.2021 02:05:22
**/
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
vector<int> a(n), b(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < n; i++) {
cin >> b[i];
}
bool same = true;
for (int i = 0; i < n; i++) {
if (b[i] != b[0]) {
same = false;
}
}
if (same) {
vector<int> pos;
for (int i = 0; i < n; i++) {
if (a[i] == b[i]) {
pos.push_back(i);
}
}
for (int i : pos) {
for (int j = i + 1; j < n; j++) {
if (a[j] >= b[j]) {
break;
}
a[j] = a[i];
}
for (int j = i - 1; j >= 0; j--) {
if (a[j] >= b[j]) {
break;
}
a[j] = a[i];
}
}
int cnt = 0;
for (int i = 0; i < n; i++) {
if (a[i] == b[i]) {
cnt++;
}
}
cout << cnt << '\n';
}
return 0;
}
| # | 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... |