#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <map>
#include <utility>
#include <vector>
#include "wiring.h"
using namespace std;
map < pair < int ,int > , long long > DP;
long long F(int N,int M,vector < int > &r,vector < int > &b)
{
if(N==0&&M==0) return abs(r[N]-b[M]);
else
{
if(DP.find(make_pair(N,M))!=DP.end()) return DP[make_pair(N,M)];
long long t=abs(r[N]-b[M]),x=1e18;
if(N) x=min(x,F(N-1,M,r,b));
if(M) x=min(x,F(N,M-1,r,b));
if(N&&M) x=min(x,F(N-1,M-1,r,b));
//printf("%d %d %lld\n",N,M,t+x);
DP[make_pair(N,M)]=t+x;
return t+x;
}
}
long long min_total_length(vector < int > r, vector < int > b)
{
int N=r.size();
int M=b.size();
int i;
long long ans=0;
if(N<=200&&M<=200) return F(N,M,r,b);
if(N<M)
{
for(i=0;i<N;i++) ans+=abs(r[i]-b[i]);
for(i=N;i<M;i++) ans+=abs(r[N-1]-b[i]);
}
else
{
for(i=0;i<M;i++) ans+=abs(r[i]-b[i]);
for(i=M;i<N;i++) ans+=abs(r[i]-b[0]);
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
256 KB |
3rd lines differ - on the 1st token, expected: '25859', found: '25924' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
256 KB |
Output is correct |
2 |
Incorrect |
24 ms |
1664 KB |
3rd lines differ - on the 1st token, expected: '84383', found: '85200' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
384 KB |
3rd lines differ - on the 1st token, expected: '316', found: '55208' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
256 KB |
3rd lines differ - on the 1st token, expected: '27', found: '54939' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
256 KB |
3rd lines differ - on the 1st token, expected: '25859', found: '25924' |
2 |
Halted |
0 ms |
0 KB |
- |