結果

問題 No.137 貯金箱の焦り
ユーザー Leqi WangLeqi Wang
提出日時 2023-05-05 13:42:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 1,233 bytes
コンパイル時間 1,925 ms
コンパイル使用メモリ 200,580 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-05-02 10:01:43
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 10 ms
5,760 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 261 ms
27,392 KB
testcase_13 AC 141 ms
17,408 KB
testcase_14 AC 122 ms
16,000 KB
testcase_15 AC 108 ms
16,000 KB
testcase_16 AC 101 ms
15,104 KB
testcase_17 AC 38 ms
9,984 KB
testcase_18 AC 99 ms
14,976 KB
testcase_19 AC 115 ms
15,488 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 60 ms
11,904 KB
testcase_22 AC 10 ms
6,912 KB
testcase_23 AC 10 ms
6,912 KB
testcase_24 AC 29 ms
9,344 KB
testcase_25 AC 76 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize(2)
//#define endl '\n'
#define ll long long //unsigned long long
#define pb push_back
#define mem(a,x) memset(a,x,sizeof(a))
#define INF 0x3f3f3f3f
#define LINF 0x3f3f3f3f3f3f3f3f
#define pi acos(-1)
#define rep(i,n,m) for(int i=n;i<=m;i++)
#define per(i,n,m) for(int i=n;i>=m;i--)
#define repp(i,n) for(int i=0;i<n;i++)
#define bug1(i) cout<<i<<endl
#define bug2(i,j) cout<<i<<" "<<j<<endl
#define bug3(i,j,k) cout<<i<<" "<<j<<" "<<k<<endl
#define bug4(i,j,k,l) cout<<i<<" "<<j<<" "<<k<<" "<<l<<endl
#define mod 1234567891 //998244353.1000000007
#define maxn 200005
#define eps 1e-6
#define int ll
using namespace std;

ll dp[70][50005];
ll a[70],s,n,m;

void solve(){
	cin>>n>>m;
	rep(i,1,n) cin>>a[i],s+=a[i];
	dp[0][0]=1;
	
	for(int b=0;b<=62;b++){
//		cout<<b<<endl;
		for(int i=1;i<=n;i++){
			for(int j=2*s-a[i];j>=0;j--){
				dp[b][j+a[i]]=(dp[b][j+a[i]]+dp[b][j])%mod;
			}
		}	
//		cout<<b<<endl;
		for(int j=2*s;j>=0;j--){
			if( (j&1) == ((m>>b)&1)) dp[b+1][j/2]=(dp[b+1][j/2]+dp[b][j])%mod;
		}
	}
	
	cout<<dp[62][0];
}

/*

*/
signed main(){
	ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);int ca=1;
//	cin>>ca;
	while(ca--){
		solve();
//		cerr<<endl;
	}
	return 0;
}
0