結果

問題 No.288 貯金箱の仕事
ユーザー koyumeishikoyumeishi
提出日時 2015-10-10 07:10:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,091 bytes
コンパイル時間 699 ms
コンパイル使用メモリ 75,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 04:56:57
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 144 ms
5,376 KB
testcase_24 AC 73 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 37 ms
5,376 KB
testcase_31 AC 36 ms
5,376 KB
testcase_32 AC 69 ms
5,376 KB
testcase_33 AC 70 ms
5,376 KB
testcase_34 AC 101 ms
5,376 KB
testcase_35 AC 104 ms
5,376 KB
testcase_36 AC 140 ms
5,376 KB
testcase_37 AC 40 ms
5,376 KB
testcase_38 AC 97 ms
5,376 KB
testcase_39 AC 45 ms
5,376 KB
testcase_40 AC 47 ms
5,376 KB
testcase_41 AC 125 ms
5,376 KB
testcase_42 AC 115 ms
5,376 KB
testcase_43 AC 85 ms
5,376 KB
testcase_44 AC 26 ms
5,376 KB
testcase_45 AC 73 ms
5,376 KB
testcase_46 AC 112 ms
5,376 KB
testcase_47 AC 57 ms
5,376 KB
testcase_48 AC 80 ms
5,376 KB
testcase_49 AC 36 ms
5,376 KB
testcase_50 AC 52 ms
5,376 KB
testcase_51 AC 35 ms
5,376 KB
testcase_52 AC 63 ms
5,376 KB
testcase_53 AC 84 ms
5,376 KB
testcase_54 AC 46 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;

int main(){
	long long n,m;
	cin >> n >> m;
	vector<long long> a(n), k(n);

	for(int i=0; i<n; i++){
		cin >> a[i];
	}
	for(int i=0; i<n; i++){
		cin >> k[i];
	}

	long long sum = 0;
	for(int i=0; i<n; i++){
		sum += a[i] * k[i];
	}

	sum -= m;
	if(sum<0){
		cout << -1 << endl;

		return 0;
	}

	long long cnt = 0;

	long long sz = a[n-1]*a[n-1]+1;
	vector<long long> dp(sz, 1LL<<50);
	dp[0] = 0;
	for(int i=0; i<n; i++){
		for(long long v=a[i]; v<sz; v++){
			dp[v] = min(dp[v], dp[v-a[i]] + 1);
		}

	}

	auto check = [&](long long x){
		return a.back()*a.back() < sum - x*a.back();
	};

	long long lb = sum/(a.back()*a.back());
	lb *= a.back();

	/*
	long long ub = 1e13;
	while(ub-lb>1){
		long long mid = (lb+ub)/2;
		bool ok = check(mid);
		(ok? lb : ub) = mid;
	}
	*/

	cnt += lb;
	sum -= lb*a.back();

	cnt = dp[sum]!=(1LL<<50)?(cnt+dp[sum]):-1;

	cout << cnt << endl;

	return 0;
}
0