# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
376964 | nicholask | 전선 연결 (IOI17_wiring) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#ifdef ONLINE_JUDGE
#include "wiring.h"
#endif
#include <bits/stdc++.h>
#define int long long
using namespace std;
int min_total_length(vector <int> r,vector <int> b){
int n=r.size(),m=b.size();
int dp[n+1][m+1];
for (int i=0; i<=n; i++){
for (int j=0; j<=m; j++){
if (!i||!j) dp[i][j]=0;
else dp[i][j]=1e18;
}
}
for (int i=1; i<=n; i++){
for (int j=1; j<=m; j++) dp[i][j]=min({dp[i-1][j],dp[i][j-1],dp[i-1][j-1]})+abs(r[i-1]-b[j-1]);
}
return dp[n][m];
}
#ifndef ONLINE_JUGDE
signed main(){
int n,m;
cin>>n>>m;
vector <int> r(n),b(m);
for (auto&i:r) cin>>i;
for (auto&i:b) cin>>i;
cout<<min_total_length(r,b);
}
#endif