답안 #376966

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
376966 2021-03-12T12:58:56 Z nicholask 전선 연결 (IOI17_wiring) C++14
0 / 100
1 ms 384 KB
#include "wiring.h"
#include <bits/stdc++.h>
using namespace std;
long long min_total_length(vector <int> r,vector <int> b){
	int n=r.size(),m=b.size();
	long long 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];
}
/*
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);
}
*/
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB 3rd lines differ - on the 1st token, expected: '25859', found: '21828'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 380 KB 3rd lines differ - on the 1st token, expected: '904', found: '326'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB 3rd lines differ - on the 1st token, expected: '316', found: '188'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB 3rd lines differ - on the 1st token, expected: '27', found: '19'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB 3rd lines differ - on the 1st token, expected: '25859', found: '21828'
2 Halted 0 ms 0 KB -