結果

問題 No.288 貯金箱の仕事
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-12 22:01:17
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 1,009 bytes
コンパイル時間 899 ms
コンパイル使用メモリ 103,680 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 02:10:46
合計ジャッジ時間 5,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 53
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.stdio, std.string;

immutable INF = 10L^^18 + 1;

void main() {
	string[] tokens;
	tokens = readln.chomp.split(" ");
	const N = tokens[0].to!int;
	const M = tokens[1].to!long;
	tokens = readln.chomp.split(" ");
	auto A = new int[N];
	foreach (i; 0 .. N) {
		A[i] = tokens[i].to!int;
	}
	tokens = readln.chomp.split(" ");
	auto K = new long[N];
	foreach (i; 0 .. N) {
		K[i] = tokens[i].to!long;
	}
	
	const lim = A[$ - 1]^^2;
	auto dp = new long[lim + 1];
	dp[] = INF;
	dp[0] = 0;
	foreach (i; 0 .. N) {
		foreach (x; A[i] .. lim + 1) {
			if (dp[x] > dp[x - A[i]] + 1) {
				dp[x] = dp[x - A[i]] + 1;
			}
		}
	}
	long target = -M;
	foreach (i; 0 .. N) {
		target += A[i] * K[i];
	}
	long ans;
	if (target < 0) {
		ans = INF;
	} else if (target < lim) {
		ans = dp[cast(size_t)(target)];
	} else {
		const greed = ((target - lim) + A[$ - 1] - 1) / A[$ - 1];
		ans = greed + dp[cast(size_t)(target - A[$ - 1] * greed)];
	}
	if (ans >= INF) {
		writeln(-1);
	} else {
		writeln(ans);
	}
}
0