結果

問題 No.527 ナップサック容量問題
ユーザー inr_yorimichiinr_yorimichi
提出日時 2017-12-10 00:34:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 932 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 64,896 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2024-05-07 13:03:36
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
42,880 KB
testcase_01 AC 28 ms
42,880 KB
testcase_02 AC 28 ms
42,752 KB
testcase_03 WA -
testcase_04 AC 27 ms
42,880 KB
testcase_05 AC 30 ms
42,752 KB
testcase_06 AC 29 ms
42,880 KB
testcase_07 WA -
testcase_08 AC 28 ms
42,880 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 28 ms
42,880 KB
testcase_12 AC 28 ms
42,880 KB
testcase_13 AC 29 ms
42,752 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 28 ms
42,880 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 30 ms
42,880 KB
testcase_29 WA -
testcase_30 AC 27 ms
42,880 KB
testcase_31 AC 28 ms
42,880 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 27 ms
42,752 KB
testcase_35 WA -
testcase_36 AC 28 ms
42,880 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
	int g[101][100001];
int main(){
	int N;
	int v[100];
	int w[100];
	int V1=0;
	int V2=0;
	int W1=0;
	int W2=100000;
	int i,j;
	int k=0;
	int l=0;
	
	for(i=0;i<101;i++){
		for(j=0;j<100001;j++){
			g[i][j]=0;
		}
	}
	cin>>N;
	for(i=0;i<N;i++){
		cin>>v[i]>>w[i];
		W1=W1+w[i];
		V2=V2+v[i];
		if(W2>w[i]){
			W2=w[i];
			l=i;
		}
	}
	cin>>V1;
	
	if(V1>=V2)cout<<W1<<endl<<"inf";
	if(V1<=v[l]){
		cout<<1<<endl<<w[l]-1;
	}
	if(V1<V2 && V1>v[l]){	
	for(i=0;i<W1+1;i++){
		g[0][i]=0;
	}
	for(j=0;j<N+1;j++){
		for(i=0;i<W1+1;i++){
			g[j+1][i]=g[j][i];
		}
		for(i=0;i<W1+1;i++){
			if(i==0 || g[j][i]!=0  && i+w[j]<=W1){
				if(g[j+1][i+w[j]]<g[j][i]+v[j]){
					g[j+1][i+w[j]]=g[j][i]+v[j];
				}
			}
		}
	}
	
	for(i=1;i<W1+1;i++){
		if(g[N][i]==V1){
			if(k==0){ 
				cout<<i<<endl;
				k=1;
			}
		}else{
			if(k!=0 && g[N][i]!=0){
				cout<<i-1;
				break;
			}
		}
	}
	}
	return 0;
}
			
	
0