結果

問題 No.527 ナップサック容量問題
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-11 17:25:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 1,200 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 77,228 KB
実行使用メモリ 109,924 KB
最終ジャッジ日時 2024-09-24 16:24:29
合計ジャッジ時間 10,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
55,968 KB
testcase_01 AC 151 ms
56,116 KB
testcase_02 AC 143 ms
53,996 KB
testcase_03 AC 153 ms
56,156 KB
testcase_04 AC 126 ms
54,036 KB
testcase_05 AC 178 ms
68,828 KB
testcase_06 AC 216 ms
86,336 KB
testcase_07 AC 213 ms
82,944 KB
testcase_08 AC 177 ms
65,336 KB
testcase_09 AC 134 ms
54,392 KB
testcase_10 AC 223 ms
86,620 KB
testcase_11 AC 202 ms
83,052 KB
testcase_12 AC 187 ms
75,964 KB
testcase_13 AC 217 ms
86,304 KB
testcase_14 AC 179 ms
65,440 KB
testcase_15 AC 188 ms
76,148 KB
testcase_16 AC 158 ms
56,048 KB
testcase_17 AC 189 ms
69,064 KB
testcase_18 AC 187 ms
75,608 KB
testcase_19 AC 154 ms
56,228 KB
testcase_20 AC 180 ms
65,616 KB
testcase_21 AC 233 ms
109,924 KB
testcase_22 AC 213 ms
83,160 KB
testcase_23 AC 224 ms
90,584 KB
testcase_24 AC 166 ms
63,312 KB
testcase_25 AC 215 ms
83,184 KB
testcase_26 AC 182 ms
76,152 KB
testcase_27 AC 186 ms
75,880 KB
testcase_28 AC 189 ms
75,944 KB
testcase_29 AC 232 ms
109,864 KB
testcase_30 AC 156 ms
59,012 KB
testcase_31 AC 187 ms
76,232 KB
testcase_32 AC 188 ms
75,976 KB
testcase_33 AC 188 ms
76,188 KB
testcase_34 AC 193 ms
76,052 KB
testcase_35 AC 190 ms
76,340 KB
testcase_36 AC 153 ms
55,916 KB
testcase_37 AC 186 ms
68,964 KB
testcase_38 AC 187 ms
75,940 KB
testcase_39 AC 193 ms
76,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    // dp[i][j]は荷物iまでから容量がj以下となるように選んだ時の価値の総和の最大値を表す
    int[][] dp = new int[N][100001];
    int[] v = new int[N];
    int[] w = new int[N];
    for(int i = 0; i < N; i++) {
      v[i] = sc.nextInt();
      w[i] = sc.nextInt(); 
    }
    int V = sc.nextInt();
    for(int j = w[0]; j < 100001; j++) {
      dp[0][j] = v[0];
    }
    for(int i = 1; i < N; i++) {
      for(int j = 1; j < 100001; j++) {
        if(j >= w[i]) {
          dp[i][j] = Math.max(dp[i - 1][j], dp[i - 1][j - w[i]] + v[i]);
        } else {
          dp[i][j] = dp[i - 1][j];
        }
      }
    }
    int min = 0;
    int max = 0;
    for(int j = 1; j < 100001; j++) {
      if(dp[N - 1][j] == V) {
        min = j;
        break;
      }
    }
    for(int j = 1; j < 100001; j++) {
      if(dp[N - 1][j] > V) {
        max = j - 1;
        break;
      }
    }
    System.out.println(min);
    if(max == 0) {
      System.out.println("inf");
    } else {
      System.out.println(max);
    }
  }
}
0