F면경:painting house
4253 단어 paint
There are a row of houses, each house can be painted with three colors red,
blue and green. The cost of painting each house with a certain color is different.
You have to paint all the houses such that no two adjacent houses have the same color.
You have to paint the houses with minimum cost. How would you do it?
Note: Painting house-1 with red costs different from painting house-2 with red.
The costs are different for each house and each color.
dp, f(i,j)는 이전 i하우스가 모두 페인트되었고 i번째 하우스가 color_가 되었다는 것을 나타낸다j의 최소 코스트.
1 int paint(int N, int M, int[][] cost) {
2 int[][] res = new int[N+1][M];
3 for (int t=0; t<M; t++) {
4 res[0][t] = 0;
5 }
6 for (int i=1; i<N; i++) {
7 for (int j=0; j<M; j++) {
8 res[i][j] = Integer.MAX_VALUE;
9 }
10 }
11 for (int i=1; i<=N; i++) {
12 for (int j=0; j<M; j++) {
13 for (int k=0; k<M; k++) {
14 if (k != j) {
15 res[i][j] = Math.min(res[i][j], res[i-1][k]+cost[i-1][j]); //
16 }
17 }
18 }
19 }
20 int result = Integer.MAX_VALUE;
21 for (int t=0; t<M; t++) {
22 result = Math.min(result, res[N][t]);
23 }
24 return result;
25 }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
이미지 배율 조정 및 회전bitmap을 그릴 때 매개 변수 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매트릭스 매...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.