반응형
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
- msSQL
- @P0
- upper_bound
- 물채우기
- 기술면접
- 6987
- 처우협의
- 오퍼레터
- 매개변수탐색
- 퇴사통보
- Docker
- boj #19237 #어른 상어
- dfs
- softeer
- incr
- BFS
- 이분탐색
- 처우산정
- 백트래킹
- 파라메트릭
- 경력
- compose
- 성적평가
- BOJ
- 소프티어
- 백준
- OFFSET
- Kafka
- 연결요소
- 13908
Archives
- Today
- Total
기술 블로그
스티커 모으기(2) 본문
728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/12971
dp 동적계획법 코테
[0] [1] ... [i-2] [i-1] [i] ...
에서 i번 째 스티커를 뜯을 수 있는 경우는
i-1번 째 스티커를 뜯지 않아야 한다.
다시 말하면, [i-2]까지 누적된 최댓값에 해당 i번 째 스티커를 더해준다.
즉, dp[i] = dp[i-2] + sticker[i]
그리고, i번 째 스티커를 뜯지 않을 수 있으므로
dp[i] = dp[i-1]도 고려해줘야한다.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | import java.io.*; import java.util.*; public class Solution { static BufferedReader br; static BufferedWriter bw; static int[] dp, dp2; static int solution(int sticker[]) { int answer = 0; int len = sticker.length; if(len == 1) { return sticker[0]; } else if(len == 2) { return Math.max(sticker[0], sticker[1]); } dp = new int[len+1]; // 첫 번째를 뜯었을 때 → 맨 마지막 스티커(len - 1)는 못 뜯는다. 그래서 31번 째 조건문을 추가해준다. dp2 = new int[len+1]; // 첫 번째를 안 뜯었을 때 dp[0] = dp[1] = sticker[0]; dp2[0] = 0; dp2[1] = sticker[1]; for(int i=2; i<len; i++) { if(i != len - 1) dp[i] = Math.max(dp[i-1], dp[i-2] + sticker[i]); dp2[i] = Math.max(dp2[i-1], dp2[i-2] + sticker[i]); } return Math.max(dp[len - 2], dp2[len - 1]); } public static void main(String[] args) throws IOException { // TODO Auto-generated method stub br = new BufferedReader(new InputStreamReader(System.in)); bw = new BufferedWriter(new OutputStreamWriter(System.out)); StringTokenizer st; int[] sticker = {14, 6, 5, 11, 3, 9, 2, 10}; System.out.println(solution(sticker)); bw.write("\n"); bw.flush(); bw.close(); } } class pair { int first, second; pair(int a, int b) { this.first = a; this.second = b; } } class tuple { int first, second, third; tuple(int a, int b, int c) { this.first = a; this.second = b; this.third = c; } } class PQ implements Comparable<PQ> { int first, second; PQ(int f, int s) { this.first = f; this.second = s; } public int compareTo(PQ p) { if(this.first < p.first) { return -1; // 오름차순 } else if(this.first == p.first) { if(this.second < p.second) { return -1; } } return 1; // 이미 this.first가 더 큰 것이 됐으므로, 1로 해준다. // -1로 하면 결과가 이상하게 출력됨. } } | cs |
728x90
반응형
'알고리즘 문제 > Programmers' 카테고리의 다른 글
올바른 괄호의 개수 (0) | 2020.06.25 |
---|---|
베스트앨범 (0) | 2020.06.24 |
셔틀버스 (0) | 2020.06.24 |
예산 (0) | 2020.06.24 |
N으로 표현 (0) | 2020.06.24 |