이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "wiring.h"
#include <bits/stdc++.h>
#define N 205
using namespace std;
long long dp[N][N];
vector<int> r,b;
long long dist(int i,int j){
long long ret = abs(r[i] - b[j]);
return ret;
}
long long min_total_length(vector<int> r_, vector<int> b_) {
r = r_;
b = b_;
int n = r.size(),m = b.size();
for(int i = 0;i<n;i++){
for(int j = 0;j<m;j++){
dp[i][j] = 1e18;
}
}
dp[0][0] = abs(r[0] - b[0]);
for(int i = 0;i<n;i++){
for(int j = 0;j<m;j++){
if(i)
dp[i][j] = min(dp[i][j],dp[i-1][j] + dist(i,j));
if(j)
dp[i][j] = min(dp[i][j],dp[i][j-1] + dist(i,j));
if(i && j)
dp[i][j] = min(dp[i][j],dp[i-1][j-1] + dist(i,j));
if(i+1 != n && j+1 != m && (b[j+1] > r[i+1] && b[j] < r[i+1]))break;
}
}
return dp[n-1][m-1];
}
# | 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... |