結果

問題 No.527 ナップサック容量問題
ユーザー htensaihtensai
提出日時 2019-12-26 19:10:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 2,042 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 65,852 KB
最終ジャッジ日時 2024-10-04 18:48:10
合計ジャッジ時間 8,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,356 KB
testcase_01 AC 107 ms
41,196 KB
testcase_02 AC 98 ms
41,392 KB
testcase_03 AC 102 ms
41,224 KB
testcase_04 AC 111 ms
41,112 KB
testcase_05 AC 114 ms
41,300 KB
testcase_06 AC 120 ms
41,532 KB
testcase_07 AC 163 ms
51,624 KB
testcase_08 AC 126 ms
41,416 KB
testcase_09 AC 111 ms
41,252 KB
testcase_10 AC 180 ms
56,644 KB
testcase_11 AC 111 ms
41,468 KB
testcase_12 AC 115 ms
41,616 KB
testcase_13 AC 124 ms
41,304 KB
testcase_14 AC 133 ms
43,484 KB
testcase_15 AC 142 ms
47,964 KB
testcase_16 AC 107 ms
41,328 KB
testcase_17 AC 139 ms
47,988 KB
testcase_18 AC 144 ms
47,844 KB
testcase_19 AC 108 ms
41,084 KB
testcase_20 AC 132 ms
43,680 KB
testcase_21 AC 183 ms
65,852 KB
testcase_22 AC 156 ms
51,724 KB
testcase_23 AC 166 ms
57,160 KB
testcase_24 AC 118 ms
42,160 KB
testcase_25 AC 154 ms
51,888 KB
testcase_26 AC 151 ms
48,088 KB
testcase_27 AC 152 ms
52,116 KB
testcase_28 AC 150 ms
47,536 KB
testcase_29 AC 187 ms
65,492 KB
testcase_30 AC 111 ms
41,192 KB
testcase_31 AC 116 ms
41,448 KB
testcase_32 AC 124 ms
41,608 KB
testcase_33 AC 133 ms
41,580 KB
testcase_34 AC 122 ms
41,628 KB
testcase_35 AC 155 ms
47,764 KB
testcase_36 AC 107 ms
41,404 KB
testcase_37 AC 143 ms
48,236 KB
testcase_38 AC 146 ms
48,012 KB
testcase_39 AC 152 ms
47,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    static int[][] dp;
    static int[] wArr;
    static int[] vArr;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int wTotal = 0;
        int vTotal = 0;
        wArr = new int[n + 1];
        vArr = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            vArr[i] = sc.nextInt();
            vTotal += vArr[i];
            wArr[i] = sc.nextInt();
            wTotal += wArr[i];
        }
        int value = sc.nextInt();
        if (value == vTotal) {
            System.out.println(wTotal);
            System.out.println("inf");
            return;
        }
        dp = new int[n + 1][wTotal];
        int maxLeft = 0;
        int maxRight = wTotal;
        while (maxRight - maxLeft > 1) {
            int m = (maxLeft + maxRight) / 2;
            if (dfw(n, m) > value) {
                maxRight = m;
            } else {
                maxLeft = m;
            }
        }
        int max = maxLeft;
        int min;
        if (value == 0) {
            min = 1;
        } else {
            int minLeft = 0;
            int minRight = wTotal;
            while (minRight - minLeft > 1) {
                int m = (minLeft + minRight) / 2;
                if (dfw(n, m) >= value) {
                    minRight = m;
                } else {
                    minLeft = m;
                }
            }
            min = minRight;
        }
        System.out.println(min);
        System.out.println(max);
    }
    
    static int dfw(int idx, int weight) {
        if (weight < 0) {
            return Integer.MIN_VALUE;
        }
        if (weight == 0) {
            return 0;
        }
        if (idx == 0) {
            return 0;
        }
        if (dp[idx][weight] != 0) {
            return dp[idx][weight];
        }
        dp[idx][weight] = Math.max(dfw(idx - 1, weight), dfw(idx - 1, weight - wArr[idx]) + vArr[idx]);
        return dp[idx][weight];
    }
}
0