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>
#define all(v) v.begin(), v.end()
#define chmax(x, v) x = max(x, v)
#define chmin(x, v) x = min(x, v)
#define pb push_back
#define pii pair<int, int>
#define sz(x) (int)x.size()
#define x first
#define y second
#define int long long
using namespace std;
 
signed main(){ 
      int nVals; cin >> nVals;
      vector<int> init(nVals), requis(nVals);
      for (int& val : init) cin >> val;
      for (int& val : requis) cin >> val;
      vector<int> dp(nVals + 1, 0);
      int bestRes = -1;
      for (int fin = 0; fin < nVals; ++fin){
            map<int, int> nOccs;
            int maxi = -1;
            for (int deb = fin; deb >= 0; --deb){
                  nOccs[requis[deb]]++;
                  chmax(maxi, init[deb]);
                  int gainTrans = nOccs[maxi];
                  chmax(dp[fin + 1], dp[deb] + gainTrans);
            }
            chmax(bestRes, dp[fin + 1]);
          //  chmax(dp[fin])
      }
      cout << bestRes << endl;
      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... |