結果

問題 No.288 貯金箱の仕事
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-12 22:01:17
言語 D
(dmd 2.106.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 212 ms
5,376 KB
testcase_24 AC 102 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 56 ms
5,376 KB
testcase_31 AC 57 ms
5,376 KB
testcase_32 AC 110 ms
5,376 KB
testcase_33 AC 108 ms
5,376 KB
testcase_34 AC 161 ms
5,376 KB
testcase_35 AC 162 ms
5,376 KB
testcase_36 AC 214 ms
5,376 KB
testcase_37 AC 61 ms
5,376 KB
testcase_38 AC 145 ms
5,376 KB
testcase_39 AC 73 ms
5,376 KB
testcase_40 AC 75 ms
5,376 KB
testcase_41 AC 203 ms
5,376 KB
testcase_42 AC 176 ms
5,376 KB
testcase_43 AC 125 ms
5,376 KB
testcase_44 AC 38 ms
5,376 KB
testcase_45 AC 116 ms
5,376 KB
testcase_46 AC 179 ms
5,376 KB
testcase_47 AC 89 ms
5,376 KB
testcase_48 AC 125 ms
5,376 KB
testcase_49 AC 53 ms
5,376 KB
testcase_50 AC 77 ms
5,376 KB
testcase_51 AC 53 ms
5,376 KB
testcase_52 AC 98 ms
5,376 KB
testcase_53 AC 127 ms
5,376 KB
testcase_54 AC 72 ms
5,376 KB
testcase_55 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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