結果

問題 No.288 貯金箱の仕事
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-12 22:22:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 1,700 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 87,476 KB
実行使用メモリ 57,184 KB
最終ジャッジ日時 2024-06-23 19:20:32
合計ジャッジ時間 14,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,088 KB
testcase_01 AC 129 ms
54,236 KB
testcase_02 AC 131 ms
54,132 KB
testcase_03 AC 130 ms
54,144 KB
testcase_04 AC 134 ms
54,140 KB
testcase_05 AC 132 ms
54,044 KB
testcase_06 AC 131 ms
54,144 KB
testcase_07 AC 141 ms
54,296 KB
testcase_08 AC 137 ms
54,148 KB
testcase_09 AC 138 ms
54,136 KB
testcase_10 AC 142 ms
54,356 KB
testcase_11 AC 137 ms
54,144 KB
testcase_12 AC 143 ms
54,444 KB
testcase_13 AC 139 ms
54,284 KB
testcase_14 AC 137 ms
54,172 KB
testcase_15 AC 138 ms
54,216 KB
testcase_16 AC 141 ms
54,288 KB
testcase_17 AC 141 ms
54,316 KB
testcase_18 AC 136 ms
54,224 KB
testcase_19 AC 139 ms
54,304 KB
testcase_20 AC 123 ms
54,824 KB
testcase_21 AC 138 ms
54,156 KB
testcase_22 AC 142 ms
54,476 KB
testcase_23 AC 208 ms
54,660 KB
testcase_24 AC 195 ms
54,568 KB
testcase_25 AC 170 ms
57,184 KB
testcase_26 AC 167 ms
57,008 KB
testcase_27 AC 148 ms
56,960 KB
testcase_28 AC 171 ms
57,128 KB
testcase_29 AC 170 ms
57,044 KB
testcase_30 AC 335 ms
57,080 KB
testcase_31 AC 411 ms
57,112 KB
testcase_32 AC 308 ms
57,156 KB
testcase_33 AC 311 ms
57,092 KB
testcase_34 AC 344 ms
56,908 KB
testcase_35 AC 345 ms
56,892 KB
testcase_36 AC 207 ms
54,844 KB
testcase_37 AC 175 ms
54,680 KB
testcase_38 AC 207 ms
55,032 KB
testcase_39 AC 185 ms
54,480 KB
testcase_40 AC 172 ms
54,456 KB
testcase_41 AC 215 ms
54,964 KB
testcase_42 AC 211 ms
54,820 KB
testcase_43 AC 192 ms
54,820 KB
testcase_44 AC 176 ms
54,300 KB
testcase_45 AC 208 ms
54,652 KB
testcase_46 AC 218 ms
54,500 KB
testcase_47 AC 196 ms
54,424 KB
testcase_48 AC 206 ms
56,848 KB
testcase_49 AC 184 ms
54,608 KB
testcase_50 AC 198 ms
54,640 KB
testcase_51 AC 188 ms
54,584 KB
testcase_52 AC 203 ms
54,920 KB
testcase_53 AC 196 ms
54,676 KB
testcase_54 AC 208 ms
54,864 KB
testcase_55 AC 125 ms
54,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.Math.*;
import static java.math.BigInteger.*;
import static java.util.Arrays.*;
import static java.util.Collections.*;
import java.math.*;
import java.util.*;
import java.io.*;

public class Main {
	public static void main(String[] args) { new Main().run(); }
	Scanner in = new Scanner(System.in);
	void _out(Object...os) { System.out.println(deepToString(os)); }
	void _err(Object...os) { System.err.println(deepToString(os)); }
	
	void run() {
		long INF = 1_000_000_000_000_000_000L + 1;
		for (; in.hasNext(); ) {
			int n = in.nextInt();
			long m = in.nextLong();
			int[] as = new int[n];
			for (int i = 0; i < n; ++i) {
				as[i] = in.nextInt();
			}
			long[] ks = new long[n];
			for (int i = 0; i < n; ++i) {
				ks[i] = in.nextLong();
			}
			int lim = as[n - 1] << 1;
			long[] dp;
			for (; ; lim <<= 1) {
				dp = new long[lim + 1];
				for (int x = 0; x <= lim; ++x) {
					dp[x] = INF;
				}
				dp[0] = 0;
				for (int i = 0; i < n; ++i) {
					for (int x = as[i]; x <= lim; ++x) {
						if (dp[x] > dp[x - as[i]] + 1) {
							dp[x] = dp[x - as[i]] + 1;
						}
					}
				}
				boolean ok = true;
				for (int x = lim - as[n - 1]; x <= lim; ++x) {
					ok &= (dp[x] >= INF || dp[x] == dp[x - as[n - 1]] + 1);
				}
				if (ok) {
					break;
				}
			}
			_err(lim);
			long target = -m;
			for (int i = 0; i < n; ++i) {
				target += as[i] * ks[i];
			}
			long ans;
			if (target < 0) {
				ans = INF;
			} else if (target <= lim) {
				ans = dp[(int)target];
			} else {
				long greed = ((target - lim) + as[n - 1] - 1) / as[n - 1];
				ans = greed + dp[(int)(target - as[n - 1] * greed)];
			}
			System.out.println((ans >= INF) ? -1 : ans);
		}
	}
}
0