This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int main()
{
    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 r[n];
    for(int i = 0; i < n; i++) r[i] = 0;
    for(int i = 0; i < n; i++){
        if(a[i] == b[0]){
            r[i] = 1;
            int j = i;
            while(j > 0 && a[i] > a[j-1]){
                j--;
                r[j] = 1;
            }
            j = i;
            while(j < n-1 && a[i] > a[j+1]){
                j++;
                r[j] = 1;
            }
        }
    }
    int k = 0;
    for(int i = 0; i < n; i++){
        if(r[i]) k++;
    }
    cout << k;
    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... |