[백준] 12865 - 평범한 배낭 [JAVA]
코드(Top-down)import java.io.BufferedReader;import java.io.InputStreamReader;import java.io.IOException;import java.util.StringTokenizer;public class Main { static Integer[][] dp; static int[] W; // weight static int[] V; // value public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTok..