結果

問題 No.527 ナップサック容量問題
ユーザー schwarzahlschwarzahl
提出日時 2017-06-10 05:22:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,490 ms / 2,000 ms
コード長 1,325 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 79,700 KB
実行使用メモリ 75,680 KB
最終ジャッジ日時 2024-09-23 02:36:19
合計ジャッジ時間 23,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,192 KB
testcase_01 AC 134 ms
54,020 KB
testcase_02 AC 133 ms
53,980 KB
testcase_03 AC 134 ms
54,048 KB
testcase_04 AC 131 ms
54,068 KB
testcase_05 AC 421 ms
69,096 KB
testcase_06 AC 1,125 ms
72,232 KB
testcase_07 AC 805 ms
70,748 KB
testcase_08 AC 367 ms
64,968 KB
testcase_09 AC 132 ms
54,176 KB
testcase_10 AC 1,092 ms
71,692 KB
testcase_11 AC 586 ms
69,024 KB
testcase_12 AC 446 ms
69,820 KB
testcase_13 AC 1,256 ms
72,432 KB
testcase_14 AC 380 ms
66,996 KB
testcase_15 AC 558 ms
69,572 KB
testcase_16 AC 131 ms
53,988 KB
testcase_17 AC 427 ms
69,076 KB
testcase_18 AC 493 ms
68,700 KB
testcase_19 AC 133 ms
54,224 KB
testcase_20 AC 340 ms
63,048 KB
testcase_21 AC 1,378 ms
72,424 KB
testcase_22 AC 841 ms
70,356 KB
testcase_23 AC 1,132 ms
70,688 KB
testcase_24 AC 224 ms
57,916 KB
testcase_25 AC 701 ms
70,176 KB
testcase_26 AC 624 ms
70,256 KB
testcase_27 AC 687 ms
69,648 KB
testcase_28 AC 537 ms
70,276 KB
testcase_29 AC 1,490 ms
75,680 KB
testcase_30 AC 137 ms
54,016 KB
testcase_31 AC 156 ms
54,248 KB
testcase_32 AC 161 ms
54,396 KB
testcase_33 AC 162 ms
54,188 KB
testcase_34 AC 163 ms
54,036 KB
testcase_35 AC 550 ms
69,236 KB
testcase_36 AC 135 ms
54,292 KB
testcase_37 AC 407 ms
67,900 KB
testcase_38 AC 479 ms
69,012 KB
testcase_39 AC 448 ms
69,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Map;
import java.util.Scanner;
import java.util.TreeMap;

public class Main {
	public static void main(String[] args){
		Main main = new Main();
		main.solveC();
	}

	private void solveC() {
		Scanner sc = new Scanner(System.in);

		final int N = sc.nextInt();
		TreeMap<Integer, Integer> map = new TreeMap<>();
		map.put(0, 0);
		for (int i = 0; i < N; i++) {
			final int value = sc.nextInt();
			final int weight = sc.nextInt();
			TreeMap<Integer, Integer> nextMap = new TreeMap<>(map);
			for (Map.Entry<Integer, Integer> e : map.entrySet()) {
				final int prevWeight = e.getKey();
				final int prevValue = e.getValue();
				int nextWeight = prevWeight + weight;
				int nextValue = prevValue + value;
				if (!map.containsKey(nextWeight) || nextValue > map.get(nextWeight)) {
					nextMap.put(nextWeight, nextValue);
				}
			}
			map = nextMap;
		}
		final int V = sc.nextInt();

		Integer min = null;
		Integer max = null;
		for (Map.Entry<Integer, Integer> e : map.entrySet()) {
			final int weight = e.getKey();
			final int value = e.getValue();
			if (V > 0 && min == null && value == V) {
				min = weight;
			}
			if (value > V) {
				max = weight;
				break;
			}
		}

		System.out.println(min == null ? 1 : min);
		System.out.println(max == null ? "inf" : max - 1);
	}
}
0