Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래머스
- 프로그래머스43165
- 알고리즘
- 백준11000
- 동전0
- 신입 사원
- 펠린드롬
- 백준 1946
- 타겟넘버
- 백준12845
- 백준1969
- 강의실배정
- 백준2606
- 구현
- sql
- BFS
- 백준1388
- jsp
- 그리디
- javascript
- 자바
- BFS/DFS
- 백준10988
- 바닥장식
- 백준
- 백준4796
- 백준11047
- Spring Framework MVC
- dfs
- Java
Archives
- Today
- Total
The Kkang's man
[ 자바 /Java ] 백준 2579 : 계단오르기 본문
문제
풀이
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Stair_2579 {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int[] stairs = new int[301];
int[] score = new int[301];
int i;
for(i=1; i<=n; i++) {
stairs[i] = Integer.parseInt(br.readLine());
}
score[1] = stairs[1];
score[2] = stairs[1] + stairs[2];
score[3] = Math.max(stairs[1], stairs[2]) + stairs[3];
for(i=4; i<=n; i++) {
score[i] = Math.max(score[i-3] + stairs[i-1], score[i-2]) + stairs[i];
}
System.out.println(score[n]);
}
}
'알고리즘 > DP' 카테고리의 다른 글
[ 자바 /Java ] 백준 11726 : 2*N 타일링 (0) | 2021.08.08 |
---|---|
[ 자바 /Java ] 백준 9095 : 1, 2, 3 더하기 (0) | 2021.07.18 |
[ 자바 /Java ] 백준 11722 : 가장 긴 감소하는 부분 수열 (0) | 2021.07.18 |
Comments