結果

問題 No.2389 Cheating Code Golf
ユーザー 👑 MizarMizar
提出日時 2023-07-20 01:38:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 884 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-09-19 23:14:12
合計ジャッジ時間 10,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 264 ms
12,800 KB
testcase_03 AC 884 ms
13,312 KB
testcase_04 AC 884 ms
13,440 KB
testcase_05 AC 106 ms
12,416 KB
testcase_06 AC 88 ms
12,928 KB
testcase_07 AC 118 ms
12,288 KB
testcase_08 AC 327 ms
12,928 KB
testcase_09 AC 86 ms
12,672 KB
testcase_10 AC 89 ms
12,672 KB
testcase_11 AC 118 ms
12,416 KB
testcase_12 AC 85 ms
12,032 KB
testcase_13 AC 262 ms
12,928 KB
testcase_14 AC 139 ms
12,288 KB
testcase_15 AC 88 ms
12,288 KB
testcase_16 AC 278 ms
12,928 KB
testcase_17 AC 85 ms
12,288 KB
testcase_18 AC 121 ms
12,416 KB
testcase_19 AC 85 ms
12,032 KB
testcase_20 AC 87 ms
12,032 KB
testcase_21 AC 103 ms
12,288 KB
testcase_22 AC 89 ms
12,288 KB
testcase_23 AC 89 ms
12,032 KB
testcase_24 AC 113 ms
12,416 KB
testcase_25 AC 102 ms
12,416 KB
testcase_26 AC 90 ms
12,544 KB
testcase_27 AC 152 ms
12,160 KB
testcase_28 AC 110 ms
12,416 KB
testcase_29 AC 90 ms
12,416 KB
testcase_30 AC 230 ms
12,928 KB
testcase_31 AC 96 ms
12,416 KB
testcase_32 AC 86 ms
12,032 KB
testcase_33 AC 86 ms
12,160 KB
testcase_34 AC 172 ms
12,160 KB
testcase_35 AC 101 ms
12,544 KB
testcase_36 AC 234 ms
12,672 KB
testcase_37 AC 90 ms
12,416 KB
testcase_38 AC 414 ms
13,056 KB
testcase_39 AC 86 ms
13,056 KB
testcase_40 AC 87 ms
12,672 KB
testcase_41 AC 92 ms
12,160 KB
testcase_42 AC 92 ms
12,416 KB
testcase_43 AC 85 ms
12,032 KB
testcase_44 AC 87 ms
13,056 KB
testcase_45 AC 381 ms
12,416 KB
testcase_46 AC 229 ms
12,160 KB
testcase_47 AC 84 ms
12,160 KB
testcase_48 AC 111 ms
12,160 KB
testcase_49 AC 139 ms
12,288 KB
testcase_50 AC 84 ms
12,160 KB
testcase_51 AC 118 ms
12,416 KB
testcase_52 AC 102 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.split.map(&:to_i)
iabpp = (1..n).map{
	a, b, p = gets.split.map(&:to_f)
	[1.0 / a, 1.0 / b, 1.0 / p, 1.0 - 1.0 / p]
}
dp = Array.new(4096, -Float::INFINITY)
full_bit = (1 << n) - 1

(0..m).each do
	dpc = dp.dup
	dpc[0] = 0.0
	(1..n).each do |i|
		bidx = (1 << i) - 1
		while bidx <= full_bit do
			point = 0.0
			pit = bidx
			while pit > 0 do
				pbit = pit & -pit
				pidx = (pbit - 1).bit_length
				dpidx = bidx ^ pbit
				(af, bf, psucc, pfail) = iabpp[pidx]
				point = [point, dpc[dpidx] + af, (dpc[dpidx] + bf) * psucc + dp[bidx] * pfail].filter(&:finite?).max
				pit &= pit - 1
			end
			dpc[bidx] = [dpc[bidx], point].max
			x = bidx & -bidx
			y = bidx + x
			bidx = ((bidx & ~y) >> x.bit_length) | y
		end
	end
	dp = dpc
end

puts dp[full_bit]
0