Submission #827618

# Submission time Handle Problem Language Result Execution time Memory
827618 2023-08-16T15:23:17 Z DarkMatter Wiring (IOI17_wiring) C++14
0 / 100
0 ms 212 KB
#include<bits/stdc++.h>
#include "wiring.h"


using namespace std;

long long min_total_length(std::vector<int> r, std::vector<int> b) {
	int n = r.size(), m = b.size();
	vector<vector<long long>>dp(n + 1, vector<long long>(m + 1));
	for (int i = 1; i <= n; i++) {
		for (int j = 1; j <= m; j++) {
			long long mn = min({ dp[i - 1][j],dp[i][j - 1],dp[i - 1][j - 1] });
			long long dif = abs(r[i - 1] - b[i - 1]);
			dp[i][j] = mn + dif;
		}
	}
	return dp[n][m];
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 3rd lines differ - on the 1st token, expected: '25859', found: '26180'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 3rd lines differ - on the 1st token, expected: '904', found: '603'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 3rd lines differ - on the 1st token, expected: '316', found: '282'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 3rd lines differ - on the 1st token, expected: '27', found: '10'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB 3rd lines differ - on the 1st token, expected: '25859', found: '26180'
2 Halted 0 ms 0 KB -