# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
366655 | 2021-02-14T20:55:30 Z | EJOI2019Andrew | Exam (eJOI20_exam) | C++14 | 14 ms | 1256 KB |
#include<bits/stdc++.h> using namespace std; const int N = 5011; int a[N],b[N]; int dp[N][N]; int mx[N][N]; vector<int> vv; int c; map<int,int> mt; int amount[N*5]; void subtask1356(vector<int> &v,int n,int a[],int b[]) { sort(vv.begin(),vv.end()); for (int i=0; i<vv.size(); i++) { if(mt[vv[i]]==0) { ++c; mt[vv[i]]=c; } } for(int i=1; i<=n; i++) a[i]=mt[a[i]]; for(int i=1; i<=n; i++) b[i]=mt[b[i]]; for(int i=0; i<=n; i++) for(int j=i; j<=n; j++) mx[i][j]=max(mx[i][j-1],a[j]); dp[1][1]=0; if(a[1]==b[1]) dp[1][1]=1; for(int j=1; j<=n; j++) { for(int i=1; i<=c; i++) amount[i]=0; for(int i=j; i<=n; i++) { if(i==j) dp[i][j]=max(dp[i][j],dp[i-1][j-1]+(a[i]==b[i])); ++amount[b[i]]; if(i+1<=n) { if(a[i+1]<=mx[j][i]) { if(b[i+1]==mx[j][i]) dp[i+1][j]=max(dp[i+1][j],dp[i][j]+1); else dp[i+1][j]=max(dp[i+1][j],dp[i][j]); } else { dp[i+1][j]=max(dp[i+1][j], dp[i][j]-amount[mx[j][i]]+amount[mx[j][i+1]]+(b[i+1]==a[i+1])); } } if(j+1<=i) dp[i][j+1]=max(dp[i][j+1],dp[i][j]); } } cout<<dp[n][n]; cout<<"\n"; } int main() { int t; cin>>t; while(t--) { int n; cin>>n; for(int i=1; i<=n; i++) { cin>>a[i]; vv.push_back(a[i]); } for(int i=1; i<=n; i++) { cin>>b[i]; vv.push_back(b[i]); } subtask1356(vv,n,a,b); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 12 ms | 1256 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 12 ms | 1256 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 14 ms | 652 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |