# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1011131 | Roman70 | 전선 연결 (IOI17_wiring) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <algorithm>
#include <cmath>
#include <limits>
using namespace std;
typedef long long my_int64_t; // Use a different name for your int64_t typedef
my_int64_t min_total_length(vector<int>& red, vector<int>& blue) {
int n = red.size();
int m = blue.size();
// DP table initialized to large values
vector<vector<my_int64_t>> dp(n + 1, vector<my_int64_t>(m + 1, numeric_limits<my_int64_t>::max()));
// Base case: no points, no wires
dp[0][0] = 0;
// Fill the DP table
for (int i = 0; i <= n; ++i) {
for (int j = 0; j <= m; ++j) {
if (i > 0 && j > 0) {
dp[i][j] = min(dp[i][j], dp[i-1][j-1] + abs(red[i-1] - blue[j-1]));
}
if (i > 0) {
dp[i][j] = min(dp[i][j], dp[i-1][j] + abs(red[i-1] - blue[j-1]));
}
if (j > 0) {
dp[i][j] = min(dp[i][j], dp[i][j-1] + abs(red[i-1] - blue[j-1]));
}
}
}
return dp[n][m];
}