This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
///~~~LOTA~~~///
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define append push_back
#define add insert
#define nl '\n'
#define ff first
#define ss second
#define pii pair<int,int>
#define pll pair<ll,ll>
#define all(x) (x).begin(),(x).end()
#define L0TA ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define terminator main
#define MAXN 201
ll dp[MAXN][MAXN];
ll min_total_length(vector<int> r,vector<int> b){
ll n,m,o;
n=r.size();
m=b.size();
for(ll i=0;i<=n;i++)
for(ll j=0;j<=m;j++)
dp[i][j]=1e18;
dp[0][0]=0;
for(ll i=1;i<=n;i++){
for(ll j=1;j<=m;j++){
o=0;
for(ll k=1;k<=j;k++){
o+=abs(r[i-1]-b[j-k]);
dp[i][j]=min(dp[i][j],dp[i-1][j-k]+o);
}
o=0;
for(ll k=1;k<=i;k++){
o+=abs(r[i-k]-b[j-1]);
dp[i][j]=min(dp[i][j],dp[i-k][j-1]+o);
}
}
}
return dp[n][m];
}
# | 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... |