Baekjun No. 6148, Bookshelf 2 (with.Java)
I learned about Bookshelf 2 (with.Java), Baekjun No. 6148.
I want to solve the coding test problem, find out how to solve it differently from the retrospective of the problem I solved, and get to know.
Let’s get to the problem first.
Problem
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.
Input
Line 1: Two space-separated integers: N and B
Lines 2..N+1: Line i+1 contains a single integer: H_i
Output
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.
problem solving
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);
}
}
Solution Description
The code serves to solve the problem of farmer John using the height of the cows to find the minimum excess height to reach the top of the bookshelf.
First, in the process of processing the input, the number of cows ‘N’ and the height ‘B’ of the bookshelf are read from the first line using ‘BufferedReader’, and then the keys of ‘N’ cows are stored in the array ‘H’.
After completing the input, call ‘dfs(0, 0)’ to begin the depth-first search.
If ‘totalHeight’ is greater than ‘B’ during navigation, update the ‘minExcess’ value and exit.
Even if you have explored all cows, you will still meet the termination conditions and will not proceed further.
The search is then recursively conducted by dividing it into cases that include and do not include current cattle.
Finally, output the ‘minExcess’ value to obtain the minimum height exceeded.