結果

問題 No.527 ナップサック容量問題
ユーザー inr_yorimichiinr_yorimichi
提出日時 2017-12-10 00:26:52
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 932 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 56,612 KB
実行使用メモリ 43,040 KB
最終ジャッジ日時 2024-05-07 13:01:25
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
42,888 KB
testcase_01 AC 12 ms
42,924 KB
testcase_02 AC 11 ms
42,820 KB
testcase_03 RE -
testcase_04 AC 13 ms
42,896 KB
testcase_05 AC 12 ms
42,744 KB
testcase_06 AC 11 ms
42,880 KB
testcase_07 WA -
testcase_08 AC 10 ms
42,844 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 12 ms
42,920 KB
testcase_12 AC 12 ms
42,868 KB
testcase_13 AC 11 ms
42,856 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
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 11 ms
42,924 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 12 ms
42,736 KB
testcase_29 WA -
testcase_30 AC 11 ms
42,852 KB
testcase_31 AC 11 ms
42,840 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 11 ms
42,820 KB
testcase_35 WA -
testcase_36 AC 11 ms
42,872 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 ){
				if(g[j+1][i+w[j]]<g[j][i]+v[j] && i+w[j]<=W1){
					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