結果

問題 No.527 ナップサック容量問題
ユーザー mosmos_21mosmos_21
提出日時 2017-06-18 10:30:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 95,812 KB
最終ジャッジ日時 2024-10-01 19:34:27
合計ジャッジ時間 11,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
42,632 KB
testcase_01 AC 157 ms
43,180 KB
testcase_02 AC 153 ms
42,636 KB
testcase_03 AC 138 ms
43,100 KB
testcase_04 AC 123 ms
41,252 KB
testcase_05 AC 183 ms
57,292 KB
testcase_06 AC 231 ms
75,016 KB
testcase_07 AC 222 ms
72,768 KB
testcase_08 AC 181 ms
55,068 KB
testcase_09 AC 124 ms
41,928 KB
testcase_10 AC 230 ms
75,704 KB
testcase_11 AC 215 ms
72,848 KB
testcase_12 AC 204 ms
65,496 KB
testcase_13 AC 235 ms
76,436 KB
testcase_14 AC 184 ms
55,744 KB
testcase_15 AC 199 ms
64,920 KB
testcase_16 AC 153 ms
43,212 KB
testcase_17 AC 200 ms
64,864 KB
testcase_18 AC 206 ms
65,176 KB
testcase_19 AC 152 ms
43,572 KB
testcase_20 AC 186 ms
55,500 KB
testcase_21 AC 257 ms
95,812 KB
testcase_22 AC 215 ms
73,040 KB
testcase_23 AC 240 ms
80,304 KB
testcase_24 AC 154 ms
51,156 KB
testcase_25 AC 221 ms
72,912 KB
testcase_26 AC 208 ms
64,840 KB
testcase_27 AC 202 ms
65,156 KB
testcase_28 AC 199 ms
64,868 KB
testcase_29 AC 254 ms
95,756 KB
testcase_30 AC 152 ms
47,520 KB
testcase_31 AC 192 ms
65,216 KB
testcase_32 AC 205 ms
65,084 KB
testcase_33 AC 202 ms
65,128 KB
testcase_34 AC 209 ms
65,076 KB
testcase_35 AC 200 ms
64,952 KB
testcase_36 AC 131 ms
42,624 KB
testcase_37 AC 181 ms
57,448 KB
testcase_38 AC 198 ms
64,680 KB
testcase_39 AC 198 ms
64,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class Main {
    static Scanner in = new Scanner(System.in);
    public static void main(String[] args) {
        int N = in.nextInt();
        int[] v = new int[N], w = new int[N];
        int sum = 0;
        for(int i = 0; i < N; i++){
            v[i] = in.nextInt();
            w[i] = in.nextInt();
            sum += w[i];
        }
        int V = in.nextInt();

        int[][] dp = new int[N + 1][100001];
        for(int i = 0; i < N; i++){
            Arrays.fill(dp[i], 0);
        }

        for(int i = 1; i < N + 1; i++){
            for(int j = 0; j < 100001; j++){
                if(j - w[i - 1] >= 0){
                    dp[i][j] = Math.max(dp[i - 1][j], dp[i - 1][j - w[i -1]] + v[i - 1]);
                }else{
                    dp[i][j] = dp[i - 1][j];
                }
            }
        }
        int min = 0, max = 0;
        for(int i = 1; i < dp[N].length; i++){
            if(dp[N][i] == V){
                min = i;
                break;
            }
        }
        for(int i = dp[N].length - 1; i > 0; i--){
            if(dp[N][i] == V){
                max = i;
                break;
            }
        }
        System.out.println(min);
        System.out.println(max > sum ? "inf" : max);
    }
}
0