結果

問題 No.527 ナップサック容量問題
ユーザー kuuso1kuuso1
提出日時 2017-06-09 23:11:37
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 1,920 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 111,152 KB
実行使用メモリ 29,020 KB
最終ジャッジ日時 2024-09-22 18:07:31
合計ジャッジ時間 7,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,928 KB
testcase_01 AC 26 ms
24,156 KB
testcase_02 AC 25 ms
24,024 KB
testcase_03 AC 26 ms
21,940 KB
testcase_04 AC 25 ms
21,816 KB
testcase_05 AC 132 ms
25,580 KB
testcase_06 AC 559 ms
29,020 KB
testcase_07 AC 135 ms
24,412 KB
testcase_08 AC 92 ms
25,056 KB
testcase_09 AC 26 ms
24,116 KB
testcase_10 AC 423 ms
26,800 KB
testcase_11 AC 227 ms
28,368 KB
testcase_12 AC 141 ms
25,824 KB
testcase_13 AC 606 ms
28,956 KB
testcase_14 AC 70 ms
26,304 KB
testcase_15 AC 79 ms
23,892 KB
testcase_16 AC 26 ms
24,152 KB
testcase_17 AC 112 ms
22,584 KB
testcase_18 AC 153 ms
27,392 KB
testcase_19 AC 26 ms
23,984 KB
testcase_20 AC 31 ms
24,368 KB
testcase_21 AC 85 ms
25,764 KB
testcase_22 AC 54 ms
24,108 KB
testcase_23 AC 73 ms
24,236 KB
testcase_24 AC 28 ms
23,984 KB
testcase_25 AC 47 ms
21,932 KB
testcase_26 AC 44 ms
26,104 KB
testcase_27 AC 45 ms
23,924 KB
testcase_28 AC 41 ms
25,972 KB
testcase_29 AC 81 ms
23,980 KB
testcase_30 AC 26 ms
25,940 KB
testcase_31 AC 26 ms
23,984 KB
testcase_32 AC 26 ms
24,156 KB
testcase_33 AC 26 ms
21,940 KB
testcase_34 AC 26 ms
21,940 KB
testcase_35 AC 179 ms
27,348 KB
testcase_36 AC 26 ms
24,156 KB
testcase_37 AC 52 ms
26,148 KB
testcase_38 AC 96 ms
24,152 KB
testcase_39 AC 140 ms
25,436 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;

class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		int tot = 0;
		for(int i=0;i<N;i++) tot += W[i];
		
		int l = 1, r = tot+1;
		while(r - l > 1){
			int c = (r + l) / 2;
			int v = Knap(c);
			if(v < V0){
				l = c;
			} else {
				r = c;
			}
		}
		int min = r;
		if(Knap(l) == V0) min = l;
		
		l = 1; r = tot+1;
		while(r - l > 1){
			int c = (r + l) / 2;
			int v = Knap(c);
			if(v <= V0){
				l = c;
			} else {
				r = c;
			}
		}
		int max = l;
		
		Console.WriteLine(min);
		Console.WriteLine(max == tot ? "inf" : max.ToString());
		
	}
	
	int Knap(int weight){
		
		int[] dp = new int[weight+1];
		for(int i=1;i<=weight;i++) dp[i] = -1;
		dp[0] = 0;
		for(int i=0;i<N;i++){
			for(int j=weight;j>=0;j--){
				if(dp[j] == -1 || j + W[i] > weight) continue;
				dp[j + W[i]] = Math.Max(dp[j + W[i]], dp[j] + V[i]);
			}
		}
		
		int ret = 0;
		for(int i=0;i<=weight;i++) ret = Math.Max(ret,dp[i]);
		return ret;
		
	}
	
	
	
	int N;
	int[] V,W;
	int V0;
	public Sol(){
		N = ri();
		V = new int[N];
		W = new int[N];
		for(int i=0;i<N;i++){
			var d = ria();
			V[i] = d[0]; W[i] = d[1];
		}
		V0 = ri();
	}

	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);}
	static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));}
	static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));}
	static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));}
}
0