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
- 필기후기
- 프로그래머스
- 정수내림차순으로배치하기
- 알고리즘
- BOJ
- java
- 부스트코스
- 인강
- HTML
- 프로그래밍언어
- 프로그래밍
- 중소기업면접
- 수박수박수박수박수?
- 후기
- 확인문제
- 이클립스
- CSS
- 웹프로그래밍
- 공부
- 웹
- Linux
- 건보필기
- 농은면접
- 웹개발
- 연결요소의개수
- 한국재정정보원
- 필기
- 코딩
- algorithm
- 백준
Archives
- Today
- Total
공부하는 히욤이
[SWEA] 1486. 장훈이의 높은 선반 본문
SW Expert 1486. 장훈이의 높은 선반
* 문제의 저작권은 SW Expert에 있습니다.
[문제 접근]
점원의 키를 포함하는 경우도 있고 포함하지 않는 경우도 있기 때문에 DFS로 풀었다.
문제를 제대로 안읽어서 무조건 주어진 높이와 탑의 높이가 작은 경우를 구하는건 줄 알았는데
높이가 주어진 값보다 작은 경우는 만들 수 없다는 조건이 있기 때문에 Math.abs를 안해줘도 된다.
[코드]
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Solution_1468 {
static int N, B;
static int[] heights;
static int min;
public static void main(String[] args) throws Exception, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
for (int test_case = 1; test_case <= T; test_case++) {
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
B = Integer.parseInt(st.nextToken());
heights = new int[N];
st = new StringTokenizer(br.readLine());
for (int i = 0; i < heights.length; i++) {
heights[i] = Integer.parseInt(st.nextToken());
}
min = Integer.MAX_VALUE;
dfs(0, 0);
System.out.println("#"+test_case + " " + min);
}
}
static void dfs(int height, int depth) {
if (depth+1 >N) {
if (height >= B) {
if ((Math.abs(height-B))<min) {
min = Math.abs(height-B);
}
}
return;
}
dfs(height+heights[depth], depth+1);
dfs(height, depth+1);
}
}
'Algorithm > SW Expert Academy' 카테고리의 다른 글
[SWEA] 7810. 승현이의 질문 (0) | 2019.09.15 |
---|---|
[SWEA] 4050. 재관이의 대량 할인 (0) | 2019.08.29 |
[SWEA] 7829. 보물왕 태혁 (0) | 2019.08.23 |
[SWEA] 1209. Sum (1) | 2019.04.10 |
1219. 길찾기 (0) | 2019.04.06 |