<Algorithm> 107. 예산(프로그래머스)
by BFine반응형
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 | import java.util.stream.IntStream; public class Solution { public int solution(int[] budgets, int M) { int sum = IntStream.of(budgets).sum(); int max = IntStream.of(budgets).max().getAsInt(); /****************************** * 이분탐색을 활용하여 할당예산 이상 나오지 * 않을 경우 최댓값을 기준으로 상한선이 정해 * 지기 때문에 1과 최댓값을 이용해서 * 대소 비교를 통해 할당 예산이 허용하는 * 최대치까지 구할 수 있다. *******************************/ if(sum <= M) return max; search(1, max, budgets, M); return res; } static int res = Integer.MIN_VALUE; public void search(int start, int end,int[] budgets,int M) { if(start >= end) { return; } int mid = (start + end)/2; int sum = 0; for(int i = 0; i < budgets.length; i++) { sum += budgets[i] > mid ? mid:budgets[i]; } if(sum <= M) { res = Math.max(mid, res); search(mid+1, end, budgets, M); }else { search(start, mid, budgets, M); } } } | cs |
참고 & 출처
반응형
'공부(2018~2019) - 스킨변경전 > Algorithm' 카테고리의 다른 글
<Algorithm> 109. 3190번 뱀 (0) | 2019.02.10 |
---|---|
<Algorithm> 108. 전화번호목록(프로그래머스) (0) | 2019.02.09 |
<Algorithm> 106. 체육복(프로그래머스) (0) | 2019.02.07 |
<Algorithm> 105. 1057번 토너먼트 (0) | 2019.02.06 |
<Algorithm> 104. 1389번 케빈 베이컨의 6단계법칙 (0) | 2019.02.05 |
블로그의 정보
57개월 BackEnd
BFine