結果

問題 No.527 ナップサック容量問題
ユーザー gigimegigime
提出日時 2017-06-10 14:46:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 1,406 ms
コンパイル使用メモリ 169,284 KB
実行使用メモリ 82,668 KB
最終ジャッジ日時 2024-09-24 15:36:33
合計ジャッジ時間 3,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,096 KB
testcase_01 AC 4 ms
8,340 KB
testcase_02 AC 4 ms
7,624 KB
testcase_03 AC 5 ms
8,348 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 23 ms
36,532 KB
testcase_06 AC 46 ms
71,532 KB
testcase_07 AC 38 ms
58,352 KB
testcase_08 AC 20 ms
31,496 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 47 ms
72,296 KB
testcase_11 AC 32 ms
52,328 KB
testcase_12 AC 24 ms
39,204 KB
testcase_13 AC 45 ms
73,508 KB
testcase_14 AC 16 ms
28,732 KB
testcase_15 AC 27 ms
44,520 KB
testcase_16 AC 4 ms
7,924 KB
testcase_17 AC 22 ms
38,372 KB
testcase_18 AC 26 ms
41,468 KB
testcase_19 AC 6 ms
8,756 KB
testcase_20 AC 18 ms
30,496 KB
testcase_21 AC 54 ms
82,668 KB
testcase_22 AC 36 ms
56,236 KB
testcase_23 AC 51 ms
80,572 KB
testcase_24 AC 11 ms
20,284 KB
testcase_25 AC 35 ms
54,672 KB
testcase_26 AC 31 ms
50,468 KB
testcase_27 AC 31 ms
51,116 KB
testcase_28 AC 29 ms
44,240 KB
testcase_29 AC 53 ms
81,976 KB
testcase_30 AC 7 ms
11,796 KB
testcase_31 AC 22 ms
38,892 KB
testcase_32 AC 27 ms
45,668 KB
testcase_33 AC 23 ms
40,208 KB
testcase_34 AC 28 ms
47,360 KB
testcase_35 AC 30 ms
47,568 KB
testcase_36 AC 4 ms
7,196 KB
testcase_37 AC 23 ms
36,648 KB
testcase_38 AC 28 ms
44,676 KB
testcase_39 AC 26 ms
41,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define FOR(i,l,r) for(int i = (int) (l);i < (int) (r);i++)
template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; }
template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; }
typedef long long ll;

int N,K;
int dp [101] [200001];
const int INF = 1e9;

int main()
{
	scanf("%d",&N);
	vector<int> V(N),W(N);
	FOR(i,0,N){
		scanf("%d%d",&V [i],&W [i]);
	}
	scanf("%d",&K);

	fill(dp [0],dp [N + 1],-INF);
	dp [0] [0] = 0;
	FOR(i,0,N) FOR(j,0,200001) if(dp [i] [j] >= 0){
		chmax(dp [i + 1] [j],dp [i] [j]);
		chmax(dp [i + 1] [j + W [i]],dp [i] [j] + V [i]);
	}
	FOR(i,0,200000){
		chmax(dp [N] [i + 1],dp [N] [i]);
	}

	int mn = INF,mx = -INF;
	FOR(i,1,200001) if(dp [N] [i] == K){
		chmin(mn,i);
		chmax(mx,i);
	}
	if(dp [N] [200000] == K){
		printf("%d\ninf\n",mn);
	}
	else{
		printf("%d\n%d\n",mn,mx);
	}

	return 0;
}
0