제출 #424969

#제출 시각아이디문제언어결과실행 시간메모리
424969rainboy전선 연결 (IOI17_wiring)C++17
7 / 100
1079 ms2192 KiB
#include "wiring.h"

using namespace std;

typedef vector<int> vi;

const int SMALL = 200;
const long long INF = 0x3f3f3f3f3f3f3f3f;

int abs_(int x) { return x > 0 ? x : -x; }
long long min(long long a, long long b) { return a < b ? a : b; }

long long dp[SMALL][SMALL];

long long min_total_length(vi aa, vi bb) {
	int n = aa.size(), m = bb.size(), i, j;

	if (n <= SMALL && m <= SMALL) {
		for (i = 0; i < n; i++)
			for (j = 0; j < m; j++) {
				if (i == 0 && j == 0)
					dp[i][j] = 0;
				else {
					dp[i][j] = INF;
					if (i > 0)
						dp[i][j] = min(dp[i][j], dp[i - 1][j]);
					if (j > 0)
						dp[i][j] = min(dp[i][j], dp[i][j - 1]);
					if (i > 0 && j > 0)
						dp[i][j] = min(dp[i][j], dp[i - 1][j - 1]);
				}
				dp[i][j] += abs_(aa[i] - bb[j]);
			}
		return dp[n - 1][m - 1];
	} else {
		long long ans;

		i = 0, j = m - 1, ans = 0;
		while (i < n || j >= 0) {
			ans += bb[j] - aa[i];
			if (i + 1 < n)
				i++;
			if (j > 0)
				j--;
		}
		return ans;
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...