結果

問題 No.1861 Required Number
コンテスト
ユーザー 沙耶花
提出日時 2022-03-04 21:26:46
言語 C++17
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 60 ms / 2,500 ms
コード長 890 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3,264 ms
コンパイル使用メモリ 277,412 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2026-06-25 10:14:00
合計ジャッジ時間 9,895 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 42 MLE * 1 -- * 3
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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