λ°±μ€ 6148λ², Bookshelf 2 (with.Java)
λ°±μ€ 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
κ°μ μΆλ ₯νμ¬ κ°μ₯ μ΅μνμΌλ‘ μ΄κ³Όνλ λμ΄λ₯Ό ꡬν©λλ€.