結果

問題 No.527 ナップサック容量問題
ユーザー tookunn_1213tookunn_1213
提出日時 2017-06-10 00:08:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 2,126 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 78,408 KB
実行使用メモリ 55,332 KB
最終ジャッジ日時 2023-10-24 03:39:23
合計ジャッジ時間 6,923 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,476 KB
testcase_01 AC 55 ms
53,480 KB
testcase_02 AC 54 ms
53,476 KB
testcase_03 AC 56 ms
53,472 KB
testcase_04 AC 54 ms
53,476 KB
testcase_05 AC 90 ms
55,152 KB
testcase_06 AC 106 ms
55,088 KB
testcase_07 AC 98 ms
55,124 KB
testcase_08 AC 87 ms
55,068 KB
testcase_09 AC 54 ms
53,472 KB
testcase_10 AC 107 ms
55,084 KB
testcase_11 AC 96 ms
55,072 KB
testcase_12 AC 88 ms
55,000 KB
testcase_13 AC 108 ms
55,088 KB
testcase_14 AC 92 ms
55,196 KB
testcase_15 AC 93 ms
55,192 KB
testcase_16 AC 55 ms
53,480 KB
testcase_17 AC 88 ms
55,164 KB
testcase_18 AC 91 ms
55,040 KB
testcase_19 AC 55 ms
53,484 KB
testcase_20 AC 85 ms
55,180 KB
testcase_21 AC 115 ms
53,236 KB
testcase_22 AC 97 ms
55,180 KB
testcase_23 AC 113 ms
55,332 KB
testcase_24 AC 67 ms
54,048 KB
testcase_25 AC 98 ms
55,056 KB
testcase_26 AC 95 ms
55,044 KB
testcase_27 AC 95 ms
55,044 KB
testcase_28 AC 93 ms
55,184 KB
testcase_29 AC 115 ms
55,088 KB
testcase_30 AC 59 ms
53,480 KB
testcase_31 AC 89 ms
55,060 KB
testcase_32 AC 93 ms
55,164 KB
testcase_33 AC 91 ms
55,020 KB
testcase_34 AC 91 ms
55,196 KB
testcase_35 AC 91 ms
55,160 KB
testcase_36 AC 54 ms
53,492 KB
testcase_37 AC 88 ms
55,004 KB
testcase_38 AC 92 ms
53,184 KB
testcase_39 AC 89 ms
55,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.NoSuchElementException;

public class Main{

	int N,V;
	int[] v,w;

	public void solve() {
		N = nextInt();
		v = new int[N];
		w = new int[N];

		int vSum = 0;

		for(int i = 0;i < N;i++){
			v[i] = nextInt();
			w[i] = nextInt();
			vSum += v[i];
		}
		V = nextInt();

		int[] dp = new int[N * 1000 + 1];
		for(int i = 0;i < N;i++){
			for(int j = N * 1000;j >= 0;j--){
				if(j + w[i] <= N * 1000)dp[j+w[i]] = Math.max(dp[j+w[i]],dp[j]+v[i]);
			}
		}

		int start = -1;
		int end = -1;

		for(int i = 1;i < N * 1000 + 1;i++){
			if(dp[i] == V){
				start = i;
				break;
			}
		}
		
		for(int i = N * 1000;i >= 1;i--){
			if(dp[i] == V){
				end = i;
				break;
			}
		}

		out.println(start);
		out.println(vSum <= V ? "inf" : end);
	}

	public static void main(String[] args) {
		out.flush();
		new Main().solve();
		out.close();
	}

	/* Input */
	private static final InputStream in = System.in;
	private static final PrintWriter out = new PrintWriter(System.out);
	private final byte[] buffer = new byte[2048];
	private int p = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (p < buflen)
			return true;
		p = 0;
		try {
			buflen = in.read(buffer);
		} catch (IOException e) {
			e.printStackTrace();
		}
		if (buflen <= 0)
			return false;
		return true;
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrint(buffer[p])) {
			p++;
		}
		return hasNextByte();
	}

	private boolean isPrint(int ch) {
		if (ch >= '!' && ch <= '~')
			return true;
		return false;
	}

	private int nextByte() {
		if (!hasNextByte())
			return -1;
		return buffer[p++];
	}

	public String next() {
		if (!hasNext())
			throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = -1;
		while (isPrint((b = nextByte()))) {
			sb.appendCodePoint(b);
		}
		return sb.toString();
	}

	public int nextInt() {
		return Integer.parseInt(next());
	}

	public long nextLong() {
		return Long.parseLong(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}
0