結果

問題 No.527 ナップサック容量問題
ユーザー aa
提出日時 2018-06-18 14:31:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 2,405 bytes
コンパイル時間 784 ms
コンパイル使用メモリ 98,292 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-13 06:45:25
合計ジャッジ時間 3,247 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 3 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 9 ms
4,376 KB
testcase_06 AC 15 ms
4,376 KB
testcase_07 AC 13 ms
4,376 KB
testcase_08 AC 7 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 15 ms
4,380 KB
testcase_11 AC 11 ms
4,376 KB
testcase_12 AC 8 ms
4,380 KB
testcase_13 AC 16 ms
4,376 KB
testcase_14 AC 7 ms
4,376 KB
testcase_15 AC 10 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 8 ms
4,376 KB
testcase_18 AC 9 ms
4,380 KB
testcase_19 AC 3 ms
4,380 KB
testcase_20 AC 7 ms
4,376 KB
testcase_21 AC 17 ms
4,376 KB
testcase_22 AC 12 ms
4,376 KB
testcase_23 AC 17 ms
4,376 KB
testcase_24 AC 4 ms
4,376 KB
testcase_25 AC 11 ms
4,380 KB
testcase_26 AC 11 ms
4,380 KB
testcase_27 AC 10 ms
4,380 KB
testcase_28 AC 9 ms
4,376 KB
testcase_29 AC 17 ms
4,380 KB
testcase_30 AC 3 ms
4,380 KB
testcase_31 AC 8 ms
4,376 KB
testcase_32 AC 10 ms
4,376 KB
testcase_33 AC 9 ms
4,380 KB
testcase_34 AC 10 ms
4,380 KB
testcase_35 AC 11 ms
4,380 KB
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 8 ms
4,380 KB
testcase_38 AC 9 ms
4,376 KB
testcase_39 AC 9 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <climits>
#include <cmath>
#include <complex>
#include <map>
#include <set>
#include <vector>
#include <stack>
#include <queue>
#include <bitset>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cassert>
#include <iomanip>
using namespace std;

#define Rep(b, e, i) for(int i = b; i <= e; i++)
#define Repr(e, b, i) for(int i = e; i >= b; i--)
#define rep(n, i) Rep(0, n-1, i)
#define repr(n, i) Repr(n-1, 0, i)
#define all(v) (v).begin(), (v).end()
#define pb(v) push_back(v)
#define uniq(v) (v).erase(unique(all(v)),(v).end())
#define bitcnt(x) __builtin_popcount(x)
#define fst first
#define snd second
#define Pqaz(T) priority_queue<T,vector<T>,greater<T>>
#define Pqza(T) priority_queue<T>
#define put(x) cout << x;
#define putsp(x) cout << x << ' ';
#define putln(x) cout << x << endl;
#define ENJYU std::ios::sync_with_stdio(false);std::cin.tie(0);

typedef long long ll;
typedef pair<ll, ll> llP;
typedef pair<int, int> intP;
typedef complex<ll> comp;
typedef vector <int> vec;
typedef vector <ll> vecll;
typedef vector <double> vecd;
typedef vector <vec> mat;
typedef vector <vecll> matll;
typedef vector <vecd> matd;

//vector の中身を出力
template <class T>ostream &operator<<(ostream &o,const vector<T>&v)
{o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;}

const int MAX = 100010;
const double PI = 3.14159265358979323846;
const double EPS = 1e-12;
const int INF = 1<<29;
const ll INFL = 1e18;
const int MOD = 1000000007;

int dx4[4]={1,0,-1,0};
int dy4[4]={0,1,0,-1};
int dx8[8]={1,0,-1,1,-1,1,0,-1};
int dy8[8]={1,1,1,0,0,-1,-1,-1};

//********************************template END****************************************//

void solve(void){

	int N, V;
	cin >> N;
	vec ws(N), vs(N);
	int vsum = 0;
	rep(N, i)
	{
		cin >> vs[i] >> ws[i];
		vsum += vs[i];
	}
	cin >> V;

	vec dp(MAX, 0);

	rep(N, i) repr(MAX, w)
	{
		dp[w] = max(dp[w], dp[w-1]);
		if (w + ws[i] < MAX)
		{
			dp[w+ws[i]] = max(dp[w+ws[i]], dp[w]+vs[i]);
		}
	}

	int mini = INF, maxi = 0;
	Rep(1, MAX-1, w)
	{
		if (dp[w] == V)
		{
			mini = min(mini, w);
			maxi = max(maxi, w);
		}
	}

	if (vsum == V)
	{
		cout << mini << "\ninf" << endl;
	}
	else
	{
		cout << mini << '\n' << maxi << endl;
	}



}

int main(void){
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0