結果

問題 No.527 ナップサック容量問題
ユーザー schwarzahlschwarzahl
提出日時 2017-06-10 05:21:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,296 bytes
コンパイル時間 2,257 ms
コンパイル使用メモリ 79,548 KB
実行使用メモリ 73,652 KB
最終ジャッジ日時 2024-09-23 02:34:11
合計ジャッジ時間 22,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,144 KB
testcase_01 WA -
testcase_02 AC 126 ms
52,940 KB
testcase_03 AC 133 ms
53,812 KB
testcase_04 WA -
testcase_05 AC 451 ms
68,492 KB
testcase_06 AC 1,106 ms
71,308 KB
testcase_07 AC 822 ms
70,632 KB
testcase_08 AC 373 ms
65,080 KB
testcase_09 AC 130 ms
54,064 KB
testcase_10 AC 1,099 ms
71,220 KB
testcase_11 AC 569 ms
68,924 KB
testcase_12 AC 435 ms
69,496 KB
testcase_13 AC 1,258 ms
72,088 KB
testcase_14 AC 370 ms
67,124 KB
testcase_15 AC 574 ms
69,120 KB
testcase_16 AC 133 ms
53,988 KB
testcase_17 AC 420 ms
68,680 KB
testcase_18 AC 489 ms
68,544 KB
testcase_19 AC 130 ms
54,140 KB
testcase_20 AC 333 ms
62,636 KB
testcase_21 AC 1,325 ms
71,976 KB
testcase_22 AC 789 ms
69,876 KB
testcase_23 AC 1,118 ms
70,432 KB
testcase_24 AC 220 ms
57,900 KB
testcase_25 WA -
testcase_26 AC 614 ms
70,000 KB
testcase_27 AC 666 ms
69,152 KB
testcase_28 WA -
testcase_29 AC 1,486 ms
73,652 KB
testcase_30 AC 131 ms
53,696 KB
testcase_31 AC 147 ms
54,356 KB
testcase_32 AC 157 ms
54,272 KB
testcase_33 AC 154 ms
54,168 KB
testcase_34 AC 158 ms
54,028 KB
testcase_35 AC 517 ms
69,188 KB
testcase_36 WA -
testcase_37 AC 410 ms
67,876 KB
testcase_38 AC 470 ms
68,720 KB
testcase_39 AC 439 ms
69,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 (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