結果

問題 No.1861 Required Number
ユーザー 沙耶花沙耶花
提出日時 2022-03-04 23:33:17
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 206 ms / 2,500 ms
コード長 698 bytes
コンパイル時間 4,345 ms
コンパイル使用メモリ 265,036 KB
実行使用メモリ 247,604 KB
最終ジャッジ日時 2024-07-18 23:21:10
合計ジャッジ時間 13,560 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 176 ms
247,604 KB
testcase_04 AC 170 ms
247,516 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 7 ms
7,552 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 87 ms
112,360 KB
testcase_25 AC 184 ms
232,256 KB
testcase_26 AC 109 ms
136,780 KB
testcase_27 AC 166 ms
210,660 KB
testcase_28 AC 139 ms
172,588 KB
testcase_29 AC 178 ms
225,392 KB
testcase_30 AC 186 ms
234,636 KB
testcase_31 AC 181 ms
226,232 KB
testcase_32 AC 182 ms
227,828 KB
testcase_33 AC 187 ms
226,660 KB
testcase_34 AC 183 ms
224,828 KB
testcase_35 AC 202 ms
244,252 KB
testcase_36 AC 178 ms
226,832 KB
testcase_37 AC 195 ms
243,920 KB
testcase_38 AC 177 ms
224,316 KB
testcase_39 AC 177 ms
223,712 KB
testcase_40 AC 203 ms
247,396 KB
testcase_41 AC 185 ms
233,148 KB
testcase_42 AC 206 ms
247,356 KB
testcase_43 AC 184 ms
236,660 KB
testcase_44 AC 2 ms
6,940 KB
04_evil_1.txt MLE -
04_evil_2.txt MLE -
04_evil_3.txt MLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

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 1000000000


int main(){
	
	int n,k;
	cin>>n>>k;
	
	vector<int> a(n);
	rep(i,n)cin>>a[i];
	
	vector<bitset<100001>> pre(n+1),suf(n+1);
	pre[0][0] = 1;
	rep(i,n){
		pre[i+1] = pre[i];
		pre[i+1] |= pre[i]<<a[i];
	}
	
	suf[n][k] = 1;
	for(int i=n-1;i>=0;i--){
		suf[i] = suf[i+1];
		suf[i] |= suf[i+1]>>a[i];
	}
	if(pre.back()[k]==0){
		cout<<-1<<endl;
		return 0;
	}
	int ans = 0;
	rep(i,n){
		pre[i] &= suf[i+1];
		if(!pre[i].any()){
			//cout<<i<<endl;
			ans++;
		}
	}
	cout<<ans<<endl;
	
	return 0;
}
0