結果

問題 No.527 ナップサック容量問題
ユーザー lapilapi
提出日時 2019-04-06 10:57:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,324 bytes
コンパイル時間 1,047 ms
コンパイル使用メモリ 102,672 KB
実行使用メモリ 42,896 KB
最終ジャッジ日時 2024-06-23 16:58:19
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 15 ms
19,472 KB
testcase_06 AC 28 ms
37,120 KB
testcase_07 AC 22 ms
30,464 KB
testcase_08 AC 13 ms
17,152 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 27 ms
37,504 KB
testcase_11 AC 21 ms
27,136 KB
testcase_12 AC 16 ms
20,736 KB
testcase_13 AC 29 ms
38,272 KB
testcase_14 AC 12 ms
15,872 KB
testcase_15 AC 18 ms
23,424 KB
testcase_16 AC 4 ms
5,632 KB
testcase_17 AC 15 ms
19,712 KB
testcase_18 AC 17 ms
22,400 KB
testcase_19 AC 4 ms
5,888 KB
testcase_20 AC 12 ms
16,768 KB
testcase_21 AC 32 ms
42,896 KB
testcase_22 AC 22 ms
29,696 KB
testcase_23 AC 31 ms
41,728 KB
testcase_24 AC 9 ms
11,136 KB
testcase_25 AC 21 ms
28,800 KB
testcase_26 AC 19 ms
26,112 KB
testcase_27 AC 19 ms
26,496 KB
testcase_28 AC 17 ms
23,424 KB
testcase_29 AC 31 ms
42,368 KB
testcase_30 AC 5 ms
7,424 KB
testcase_31 AC 15 ms
20,224 KB
testcase_32 AC 18 ms
24,064 KB
testcase_33 AC 16 ms
20,992 KB
testcase_34 AC 18 ms
24,960 KB
testcase_35 AC 18 ms
24,832 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 15 ms
19,328 KB
testcase_38 AC 18 ms
23,680 KB
testcase_39 AC 16 ms
22,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
#include<iomanip>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60


int v[101], w[101];
int dp[101][100001]; // dp[i][j] : i個目までの商品で価値jを作るときの最小の重さ


int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N; cin >> N;
	for (int i = 1; i <= N; i++) cin >> v[i] >> w[i];
	int V; cin >> V;

	for (int i = 0; i <= N; i++) {
		for (int j = 0; j <= 100000;j++) dp[i][j] = INF;
	}
	
	

	dp[0][0] = 0;
	for (int i = 0; i < N; i++) {
		for (int j = 0; j <= 100000; j++) {
			if (j + v[i + 1] <= 100000) dp[i + 1][j + v[i + 1]] = min(dp[i + 1][j + v[i + 1]], dp[i][j] + w[i + 1]);
			dp[i + 1][j] = min(dp[i + 1][j], dp[i][j]);
		}
	}

	int ansmin = dp[N][V];
	
	// dp[N][V+1]~dp[N][100000]までの最小値を求める
	int ans = INF;
	for (int j = V + 1; j <= 100000; j++) {
		ans = min(ans, dp[N][j]);
	}
	
	if (ansmin == 0) cout << 1 << endl;
	else cout << ansmin << endl;


	if (ans < INF) cout << ans - 1 << endl;
	else cout << "inf" << endl;


	return 0;
}
0