結果

問題 No.527 ナップサック容量問題
ユーザー amtgjwamtgjw
提出日時 2018-05-16 12:46:10
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 66,876 KB
実行使用メモリ 42,240 KB
最終ジャッジ日時 2024-06-28 13:17:54
合計ジャッジ時間 2,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 30 ms
29,952 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 35 ms
36,992 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 14 ms
15,488 KB
testcase_15 AC 21 ms
22,912 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 18 ms
19,200 KB
testcase_18 AC 20 ms
21,760 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 15 ms
16,256 KB
testcase_21 AC 41 ms
42,240 KB
testcase_22 AC 27 ms
29,184 KB
testcase_23 AC 39 ms
41,216 KB
testcase_24 AC 10 ms
10,752 KB
testcase_25 WA -
testcase_26 AC 24 ms
25,600 KB
testcase_27 AC 24 ms
25,984 KB
testcase_28 WA -
testcase_29 AC 41 ms
41,984 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 22 ms
23,808 KB
testcase_33 AC 19 ms
20,480 KB
testcase_34 WA -
testcase_35 AC 23 ms
24,448 KB
testcase_36 WA -
testcase_37 AC 17 ms
18,944 KB
testcase_38 AC 22 ms
23,296 KB
testcase_39 AC 21 ms
21,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <numeric>
#include <map>

using namespace std;

#define REP(i,n)	for(int i=0;i<(n);++i)
#define REPS(i,s,t)	for(int i=(s);i<(t);++i)

#define INF 		2000000007
#define MOD			1000007

#define MAX 		105

typedef unsigned int 			uint;
typedef unsigned long long int	ull;
typedef long long int ll;

int DP[MAX][100005];

int main(){
	int N;cin>>N;

	vector<int> V(N);
	vector<int> W(N);
	REP(i,N){cin>>V[i]>>W[i];}
	int maxV;cin>>maxV;

	REPS(i,1,N+1){
		REPS(j,1,100001){
			if(j-W[i-1]<0){
				DP[i][j]=DP[i-1][j];
				continue;
			}
			DP[i][j] = max(DP[i-1][j],DP[i-1][j-W[i-1]]+V[i-1]);
		}
	}

	int k=0;
	while(DP[N][k++]!=maxV);
	cout << (k-1) << endl;
	while(DP[N][++k]==maxV);
	cout << (k-1) << endl;
	
	return 0;
}
0