<Algorithm> 151. 수영장(SWExpert)
by BFine반응형
1. 수영장(SWExpert)
완전탐색 문제
다른 코드들을 보니 DP로 많이 푸는 것을 보았다. 바로 완전탐색으로 짜는 것보다 DP로 푸는것이 어떨까 생각이 들었다.
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 | import java.util.Scanner; public class Solution { static int day; static int month; static int month_three; static int year; public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); /****************************** * 재귀를 이용하여 모든 경우를 완전탐색하여 * 최소 비용을 구한다. *******************************/ for(int t = 1; t <= T; t++) { day = sc.nextInt(); month = sc.nextInt(); month_three = sc.nextInt(); year = sc.nextInt(); int[] plan = new int[12]; min = Integer.MAX_VALUE; for(int i = 0; i < 12; i++) { plan[i] = sc.nextInt(); } solve(plan, 0, 0); min = Math.min(year, min); System.out.println("#"+t+" "+min); } } static int min; public static void solve(int[] plan, int deep, int total) { if(deep >= 12) { min = Math.min(total, min); return; } if(plan[deep] == 0) solve(plan, deep+1, total); solve(plan, deep+1, total + plan[deep]*day); solve(plan, deep+1, total + month); solve(plan, deep+3, total + month_three); } } | cs |
참고 & 출처
반응형
'공부(2018~2019) - 스킨변경전 > Algorithm' 카테고리의 다른 글
<Algorithm> 153. 홈 방범 서비스(SWExpert) (0) | 2019.04.03 |
---|---|
<Algorithm> 152. 벌꿀채취(SWExpert) (1) | 2019.04.03 |
<Algorithm> 150. 줄기세포배양(SWExpert) (0) | 2019.04.02 |
<Algorithm> 149. 숫자만들기(SWExpert) (0) | 2019.04.01 |
<Algorithm> 148. 보물상자비밀번호(SWExpert) (0) | 2019.04.01 |
블로그의 정보
57개월 BackEnd
BFine