結果

問題 No.1861 Required Number
ユーザー 沙耶花沙耶花
提出日時 2022-03-04 21:26:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 84 ms / 2,500 ms
コード長 890 bytes
コンパイル時間 4,912 ms
コンパイル使用メモリ 253,628 KB
最終ジャッジ日時 2025-01-28 04:49:09
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 42 MLE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000003

vector<vector<bool>> get(vector<int> a,int K){
	int n = a.size();
	vector dp(n+1,vector<bool>(K+1,false));
	dp[0][0] = true;
	rep(i,n){
		rep(j,K+1){
			if(dp[i][j]){
				dp[i+1][j] = true;
				if(j+a[i]<=K)dp[i+1][j+a[i]] = true;
			}
		}
	}
	return dp;
}

int main(){
	
	int N,K;
	cin>>N>>K;
	
	vector<int> a(N);
	rep(i,N){
		cin>>a[i];
	}
	
	auto x = get(a,K);
	reverse(a.begin(),a.end());
	auto y = get(a,K);
	if(x.back().back()==false){
		cout<<-1<<endl;
		return 0;
	}
	int ans = 0;
	rep(i,N){
		bool f = false;
		rep(j,K+1){
			if(x[i][j]==false)continue;
			if(y[N-1-i][K-j]==false)continue;
			f = true;
			break;
		}
		if(!f)ans++;
		
		
	}
	cout<<ans<<endl;
	
	return 0;
}
0