結果

問題 No.1861 Required Number
ユーザー silv723silv723
提出日時 2022-03-04 21:46:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 858 bytes
コンパイル時間 1,976 ms
コンパイル使用メモリ 207,928 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-07-18 22:44:20
合計ジャッジ時間 6,582 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,752 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 34 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 5 ms
6,944 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 4 ms
6,948 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 36 ms
6,940 KB
testcase_20 AC 18 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 25 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
04_evil_1.txt -- -
04_evil_2.txt -- -
04_evil_3.txt -- -
04_evil_4.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
	ll n,k;cin>>n>>k;
	vector<ll> v(n);
	for(int i=0;i<n;i++) cin>>v[i];
	vector<vector<ll>> dp(n+1,vector<ll>(k+1,0));
	dp[0][0]=1;
	for(int i=1;i<=n;i++){
		ll x=v[i-1];
		for(int j=0;j<=k;j++){
			if(dp[i-1][j]&&j+x<=k){
				dp[i][j+x]+=dp[i-1][j];
			}
			if(dp[i-1][j]){
				dp[i][j]+=dp[i-1][j];
			}
		}
	}
	ll ans=dp[n][k];
	if(!ans){
		cout<<-1<<endl;
		return 0;
	}
	ll fans=0;
	for(int t=1;t<=n;t++){
		vector<vector<ll>> dp2(n+1,vector<ll>(k+1,0));
		dp2[0][0]=1;
    	for(int i=1;i<=n;i++){
	    	ll x=v[i-1];
		    for(int j=0;j<=k;j++){
			    if(dp2[i-1][j]&&j+x<=k&&i!=t){
				    dp2[i][j+x]+=dp2[i-1][j];
    			}
	    		if(dp2[i-1][j]){
		    		dp2[i][j]+=dp2[i-1][j];
			    }
	    	}
     	}
     	if(dp2[n][k]==0){
     		fans++;
     	}
	}
	cout<<fans<<endl;
}
0