Contents

λ°±μ€€ 6148번, Bookshelf 2 (with.Java)

   Mar 7, 2025     3 min read

λ°±μ€€ 6148번, Bookshelf 2 (with.Java) 에 λŒ€ν•˜μ—¬ μ•Œμ•„λ³Έ κΈ€μž…λ‹ˆλ‹€.

μ½”λ”© ν…ŒμŠ€νŠΈ 문제λ₯Ό ν’€λ©°, ν’€μ—ˆλ˜ λ¬Έμ œμ— λŒ€ν•œ νšŒκ³ μ™€ λ‹€λ₯Έ 풀이 방법을 μ•Œμ•„λ³΄λ©°, μ•Œμ•„κ°€κ³ μž ν•©λ‹ˆλ‹€.

λ¬Έμ œμ— λŒ€ν•΄ λ¨Όμ € μ•Œμ•„λ³΄κ² μŠ΅λ‹ˆλ‹€.

문제

Farmer John recently bought another bookshelf for the cow library, but the shelf is getting filled up quite quickly, and now the only available space is at the top.

FJ has N cows (1 <= N <= 20) each with some height of H_i (1 <= H_i <= 1,000,000 - these are very tall cows).

The bookshelf has a height of B (1 <= B <= S, where S is the sum of the heights of all cows).

To reach the top of the bookshelf, one or more of the cows can stand on top of each other in a stack, so that their total height is the sum of each of their individual heights.

This total height must be no less than the height of the bookshelf in order for the cows to reach the top.

Since a taller stack of cows than necessary can be dangerous, your job is to find the set of cows that produces a stack of the smallest height possible such that the stack can reach the bookshelf.

Your program should print the minimal β€˜excess’ height between the optimal stack of cows and the bookshelf.

μž…λ ₯

Line 1: Two space-separated integers: N and B

Lines 2..N+1: Line i+1 contains a single integer: H_i

좜λ ₯

Line 1: A single integer representing the (non-negative) difference between the total height of the optimal set of cows and the height of the shelf.

문제 풀이

import java.io.*;
import java.util.*;

class Main {
    static int N, B;
    static int[] H;
    static int minExcess = Integer.MAX_VALUE;

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());

        N = Integer.parseInt(st.nextToken());
        B = Integer.parseInt(st.nextToken());
        H = new int[N];

        for(int i = 0; i < N; i++){
            H[i] = Integer.parseInt(br.readLine());
        }

        dfs(0, 0);
        System.out.println(minExcess);
    }

    static void dfs(int idx, int totalHeight){
        if(totalHeight >= B){
            minExcess = Math.min(minExcess, totalHeight - B);
            return;
        }

        if(idx >= N){
            return;
        }

        dfs(idx + 1, totalHeight + H[idx]);
        dfs(idx + 1, totalHeight);
    }
}

풀이 μ„€λͺ…

μ½”λ“œλŠ” 농뢀 John이 μ†Œλ“€μ˜ ν‚€λ₯Ό ν™œμš©ν•˜μ—¬ μ±…μž₯ κΌ­λŒ€κΈ°μ— λ„λ‹¬ν•˜λŠ” μ΅œμ†Œν•œμ˜ 초과 높이λ₯Ό κ΅¬ν•˜λŠ” 문제λ₯Ό ν•΄κ²°ν•˜λŠ” 역할을 ν•©λ‹ˆλ‹€.

λ¨Όμ € μž…λ ₯을 μ²˜λ¦¬ν•˜λŠ” κ³Όμ •μ—μ„œ BufferedReaderλ₯Ό μ‚¬μš©ν•˜μ—¬ 첫 번째 μ€„μ—μ„œ μ†Œμ˜ 수 Nκ³Ό μ±…μž₯의 높이 Bλ₯Ό μ½μ–΄μ˜€λ©°, 이후 N개의 μ†Œμ˜ ν‚€λ₯Ό λ°°μ—΄ H에 μ €μž₯ν•©λ‹ˆλ‹€.

μž…λ ₯을 μ™„λ£Œν•œ ν›„, dfs(0, 0)을 ν˜ΈμΆœν•˜μ—¬ 깊이 μš°μ„  탐색을 μ‹œμž‘ν•©λ‹ˆλ‹€.

탐색 κ³Όμ •μ—μ„œ totalHeightκ°€ B 이상이 되면 minExcess 값을 κ°±μ‹ ν•˜κ³  μ’…λ£Œν•©λ‹ˆλ‹€.

λͺ¨λ“  μ†Œλ₯Ό νƒμƒ‰ν•œ κ²½μš°μ—λ„ μ’…λ£Œ 쑰건을 λ§Œμ‘±ν•˜μ—¬ 더 이상 μ§„ν–‰ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.

이후 ν˜„μž¬ μ†Œλ₯Ό ν¬ν•¨ν•˜λŠ” κ²½μš°μ™€ ν¬ν•¨ν•˜μ§€ μ•ŠλŠ” 경우둜 λ‚˜λˆ„μ–΄ μž¬κ·€μ μœΌλ‘œ 탐색을 μ§„ν–‰ν•©λ‹ˆλ‹€.

μ΅œμ’…μ μœΌλ‘œ minExcess 값을 좜λ ₯ν•˜μ—¬ κ°€μž₯ μ΅œμ†Œν•œμœΌλ‘œ μ΄ˆκ³Όν•˜λŠ” 높이λ₯Ό κ΅¬ν•©λ‹ˆλ‹€.