일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- React JS
- JavaScript
- 데이터모델링과마이닝
- 코딩테스트 고득점 Kit 완전탐색
- codesandbox
- react
- 프로그래머스 자바
- 자바 공부
- vanillaJS
- Java
- 프로그래밍 언어론
- 자바
- 코딩테스트 고득점 Kit
- 자바스크립트
- 코틀린
- useState
- 백준
- react hook
- 디자인 패턴
- 프로그래머스
- NextJS
- react firebase
- 장고
- 리액트 훅
- websocket
- useEffect
- 컴퓨터 네트워크
- 프로그래머스 완전탐색
- design pattern
- 리액트
Archives
- Today
- Total
기록하는 개발자
[백준][JAVA] 2579: 계단 오르기 본문
728x90
https://www.acmicpc.net/problem/2579
1. dp의 1~3번 째 칸을 미리 채워놓고 for문을 시작하므로 N이 3이하일 경우는 따로 처리해준다.
2. 계단 수가 4이상인 경우 : 4번 째칸 부터 이전 칸들의 점수 최댓값을 이용해 현재 i 칸의 점수 최대값을 계산 한다.
3. dp[i]=Math.max( (dp[i-3] + stair[i] + stair[i-1]), (dp[i-2] + stair[i]) );
- 1. dp[i-3] + stair[i] + stair[i-1]
→ i-3번 째에서의 최댓값 + (n-1)→(n) 번째 칸을 밟은 경우
- 2. dp[i-2] + stair[i]
→ i-2번 째에서의 최댓값 + (n) 번째 칸을 밟은 경우 (n-2, n-1, n 연속 밟기 안되므로)
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int[] stair = new int[N+1];
int[] dp = new int[N+1];
for(int i = 1; i <=N; i++)
stair[i] = Integer.parseInt(br.readLine());
dp[1]=stair[1];
if(N<=3){
if(N==1) System.out.println(dp[1]);
else if(N==2) System.out.println(stair[1]+stair[2]);
else System.out.println(Math.max(stair[1]+stair[3],stair[2]+stair[3]));
}
else{
dp[2]=stair[1]+stair[2];
dp[3]=Math.max(stair[1]+stair[3],stair[2]+stair[3]);
for(int i=4; i<=N; i++)
dp[i]=Math.max( (dp[i-3]+stair[i]+stair[i-1]), (dp[i-2]+stair[i]));
System.out.println(dp[N]);
}
}
}
728x90
'Algorithm' 카테고리의 다른 글
[백준][JAVA] 2230 : 수 고르기 (0) | 2021.08.24 |
---|---|
[백준][JAVA] 2178 : 미로 탐색 (0) | 2021.08.14 |
[백준][JAVA] 14501 : 퇴사 (0) | 2021.08.14 |
[백준][JAVA] 10989: 수 정렬하기3 (0) | 2021.08.09 |
[백준][JAVA] 2751: 수 정렬하기2 (0) | 2021.08.09 |