일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자바 공부
- useState
- websocket
- 디자인 패턴
- codesandbox
- react
- 프로그래머스
- Java
- 장고
- 백준
- useEffect
- NextJS
- react firebase
- JavaScript
- 리액트
- 코딩테스트 고득점 Kit 완전탐색
- 자바
- react hook
- 컴퓨터 네트워크
- 데이터모델링과마이닝
- React JS
- design pattern
- 코틀린
- 프로그래머스 완전탐색
- 자바스크립트
- 프로그래머스 자바
- 코딩테스트 고득점 Kit
- vanillaJS
- 프로그래밍 언어론
- 리액트 훅
Archives
- Today
- Total
기록하는 개발자
[백준][JAVA] 1149 : RGB 거리 본문
728x90
import java.util.Scanner;
public class Main{
public static void main(String[] args){
Scanner s = new Scanner(System.in);
int n=s.nextInt();
int cost[][]=new int[n][3];
int color[][]=new int[n][3];
for(int i=0; i<n; i++){
for(int j=0; j<3; j++){
color[i][j]=s.nextInt();
}
}
cost[0][0] = color[0][0];
cost[0][1] = color[0][1];
cost[0][2] = color[0][2];
for(int i=1; i<n; i++) {
cost[i][0]=Math.min(cost[i-1][1],cost[i-1][2]) + color[i][0];
cost[i][1]=Math.min(cost[i-1][0],cost[i-1][2]) + color[i][1];
cost[i][2]=Math.min(cost[i-1][0],cost[i-1][1]) + color[i][2];
}
System.out.println(Math.min(cost[n-1][0],Math.min(cost[n-1][1],cost[n-1][2])));
}
}
728x90
'Algorithm' 카테고리의 다른 글
[프로그래머스][JAVA] 모의고사 (0) | 2021.06.11 |
---|---|
[백준][JAVA] 1012 : 유기농 배추 (0) | 2021.06.07 |
[백준][JAVA] 2606 : 바이러스 (0) | 2021.06.03 |
[백준][JAVA] 1260 : DFS와 BFS (0) | 2021.06.03 |
[백준][JAVA/C++] 1003 : 피보나치함수 (0) | 2021.05.14 |