結果

問題 No.288 貯金箱の仕事
ユーザー chocoruskchocorusk
提出日時 2018-12-11 22:05:02
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,175 bytes
コンパイル時間 1,025 ms
コンパイル使用メモリ 95,600 KB
実行使用メモリ 23,040 KB
最終ジャッジ日時 2024-09-22 21:54:24
合計ジャッジ時間 23,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
23,040 KB
testcase_01 AC 22 ms
22,784 KB
testcase_02 AC 30 ms
22,912 KB
testcase_03 AC 19 ms
22,912 KB
testcase_04 AC 31 ms
22,912 KB
testcase_05 AC 16 ms
22,912 KB
testcase_06 AC 17 ms
22,912 KB
testcase_07 AC 155 ms
23,040 KB
testcase_08 AC 58 ms
22,912 KB
testcase_09 AC 118 ms
22,912 KB
testcase_10 AC 127 ms
22,912 KB
testcase_11 AC 67 ms
22,912 KB
testcase_12 AC 121 ms
22,912 KB
testcase_13 AC 97 ms
22,912 KB
testcase_14 AC 120 ms
22,912 KB
testcase_15 WA -
testcase_16 AC 122 ms
23,040 KB
testcase_17 AC 93 ms
22,912 KB
testcase_18 AC 72 ms
22,912 KB
testcase_19 AC 83 ms
22,912 KB
testcase_20 AC 58 ms
22,912 KB
testcase_21 AC 69 ms
23,040 KB
testcase_22 AC 112 ms
22,912 KB
testcase_23 AC 1,223 ms
22,912 KB
testcase_24 AC 684 ms
23,040 KB
testcase_25 AC 22 ms
22,912 KB
testcase_26 AC 21 ms
22,912 KB
testcase_27 AC 23 ms
22,784 KB
testcase_28 AC 22 ms
22,912 KB
testcase_29 AC 22 ms
22,912 KB
testcase_30 AC 324 ms
23,040 KB
testcase_31 AC 318 ms
22,912 KB
testcase_32 AC 623 ms
23,040 KB
testcase_33 AC 582 ms
23,040 KB
testcase_34 AC 890 ms
22,912 KB
testcase_35 AC 903 ms
22,912 KB
testcase_36 AC 1,199 ms
22,912 KB
testcase_37 AC 351 ms
23,040 KB
testcase_38 AC 832 ms
22,912 KB
testcase_39 AC 397 ms
22,912 KB
testcase_40 AC 433 ms
22,912 KB
testcase_41 AC 1,183 ms
23,040 KB
testcase_42 AC 991 ms
22,912 KB
testcase_43 AC 681 ms
22,912 KB
testcase_44 AC 478 ms
22,912 KB
testcase_45 AC 862 ms
22,912 KB
testcase_46 AC 1,009 ms
22,784 KB
testcase_47 AC 643 ms
22,912 KB
testcase_48 AC 728 ms
22,912 KB
testcase_49 AC 451 ms
22,912 KB
testcase_50 AC 584 ms
22,912 KB
testcase_51 AC 426 ms
23,040 KB
testcase_52 AC 566 ms
22,912 KB
testcase_53 AC 732 ms
22,912 KB
testcase_54 AC 559 ms
23,040 KB
testcase_55 AC 25 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const ll INF=1e18+1;
ll gcd(ll a, ll b){
    if(b==0) return a;
    return gcd(b, a%b);
}
int main()
{
	int n; ll m;
	cin>>n>>m;
	ll a[500];
	for(int i=0; i<n; i++) cin>>a[i];
	ll g=a[0];
	for(int i=1; i<n; i++) g=gcd(a[i], g);
	for(int i=0; i<n; i++) a[i]/=g;
	if(m%g!=0){
	    cout<<-1<<endl;
	    return 0;
	}
	m/=g;
	ll s=0;
	for(int i=0; i<n; i++){
		ll k; cin>>k;
		s+=(a[i]*k);
	}
	if(s<m){
		cout<<-1<<endl;
		return 0;
	}
	s-=m;
	ll dp[2500001];
	fill(dp, dp+2500000, INF);
	dp[0]=0;
	for(int i=0; i<n-1; i++){
		for(int j=0; j<=2500000-a[i]; j++){
			dp[j+a[i]]=min(dp[j]+1, dp[j+a[i]]);
		}
	}
	ll ans=INF;
	for(ll i=s%a[n-1]; i<=min(2500000ll, s); i+=a[n-1]){
		if(dp[i]==INF) continue;
		ans=min(ans, dp[i]+(s-i)/a[n-1]);
	}
	if(ans<INF) cout<<ans<<endl;
	else cout<<-1<<endl;
	return 0;
}
0