Linkedin Interview - Paint House with Colors
1573 단어 interview
cost(i,b)=min(cost(i-1,g),cost(i-1,r))+cost of painting i as b; cost(i,g)=min(cost(i-1,b),cost(i-1,r))+cost of painting i as g; cost(i,r)=min(cost(i-1,g),cost(i-1,b))+cost of painting i as r; finally min(cost(N,b),cost(N,g),cost(N,r)) is the ans
public static int minCost(int n, int[][] cost) {
int m = cost.length;
int[][] f = new int[m][n+1];
for(int i=1; i<=n; i++) {
f[0][i] = Math.min(f[1][i-1], f[2][i-1]) + cost[0][i-1];
f[1][i] = Math.min(f[0][i-1], f[2][i-1]) + cost[1][i-1];
f[2][i] = Math.min(f[0][i-1], f[1][i-1]) + cost[2][i-1];
}
int min = Math.min(Math.min(f[0][n], f[1][n]), f[2][n]);
return min;
}
public static void main(String[] args) {
int n = 6;
int[][] cost = {{7,3,8,6,1,2},{5,6,7,2,4,3},{10,1,4,9,7,6}};
int min = minCost(n, cost);
System.out.println(min); // 18
}
Reference:
http://www.careercup.com/question?id=9941005
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
알고리즘 1000 개 노크 #2. Longest common substringsProblem Solution DP (다이나믹 프로그래밍) 중에서 고전적인 문제입니다. 두 문자열을 S1과 S2, 각각의 길이를 M, N으로 설정합니다. 총당으로 S1에서 모든 부분 문자열을 추출하고, 그것들이 S2...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.