結果

問題 No.2389 Cheating Code Golf
ユーザー 👑 rin204rin204
提出日時 2024-04-07 15:43:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 618 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 79,508 KB
最終ジャッジ日時 2024-10-01 04:33:46
合計ジャッジ時間 5,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,776 KB
testcase_01 AC 37 ms
52,948 KB
testcase_02 AC 88 ms
76,916 KB
testcase_03 AC 136 ms
79,508 KB
testcase_04 AC 134 ms
79,288 KB
testcase_05 AC 61 ms
68,272 KB
testcase_06 AC 38 ms
54,028 KB
testcase_07 AC 62 ms
68,852 KB
testcase_08 AC 90 ms
77,088 KB
testcase_09 AC 37 ms
52,952 KB
testcase_10 AC 52 ms
63,268 KB
testcase_11 AC 66 ms
69,344 KB
testcase_12 AC 40 ms
53,068 KB
testcase_13 AC 93 ms
77,392 KB
testcase_14 AC 72 ms
71,108 KB
testcase_15 AC 51 ms
63,028 KB
testcase_16 AC 90 ms
77,144 KB
testcase_17 AC 40 ms
52,112 KB
testcase_18 AC 70 ms
70,932 KB
testcase_19 AC 37 ms
53,472 KB
testcase_20 AC 51 ms
63,084 KB
testcase_21 AC 64 ms
69,180 KB
testcase_22 AC 51 ms
63,872 KB
testcase_23 AC 38 ms
53,856 KB
testcase_24 AC 67 ms
70,484 KB
testcase_25 AC 65 ms
70,060 KB
testcase_26 AC 50 ms
64,816 KB
testcase_27 AC 74 ms
73,936 KB
testcase_28 AC 70 ms
72,612 KB
testcase_29 AC 56 ms
65,280 KB
testcase_30 AC 74 ms
73,576 KB
testcase_31 AC 60 ms
68,192 KB
testcase_32 AC 38 ms
53,500 KB
testcase_33 AC 40 ms
52,836 KB
testcase_34 AC 74 ms
74,460 KB
testcase_35 AC 60 ms
68,340 KB
testcase_36 AC 70 ms
73,400 KB
testcase_37 AC 54 ms
66,140 KB
testcase_38 AC 99 ms
77,532 KB
testcase_39 AC 38 ms
52,336 KB
testcase_40 AC 48 ms
63,628 KB
testcase_41 AC 50 ms
62,672 KB
testcase_42 AC 57 ms
66,176 KB
testcase_43 AC 39 ms
52,960 KB
testcase_44 AC 48 ms
63,528 KB
testcase_45 AC 90 ms
77,384 KB
testcase_46 AC 81 ms
77,208 KB
testcase_47 AC 40 ms
52,008 KB
testcase_48 AC 65 ms
69,696 KB
testcase_49 AC 68 ms
71,988 KB
testcase_50 AC 39 ms
53,136 KB
testcase_51 AC 63 ms
68,344 KB
testcase_52 AC 61 ms
68,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
m += 1
abp = [list(map(int, input().split())) for _ in range(n)]

dp = [[0] * m for _ in range(1 << n)]
for bit in range((1 << n) - 1, -1, -1):
    for j in range(m - 1, -1, -1):
        for i in range(n):
            if bit >> i & 1:
                continue
            a, b, p = abp[i]
            nbit = bit | 1 << i
            dp[bit][j] = max(dp[bit][j], dp[nbit][j] + (1 / a))
            if j != m - 1:
                tmp = (dp[nbit][j] + 1 / b) * (1 / p)
                tmp += dp[bit][j + 1] * (1 - 1 / p)
                dp[bit][j] = max(dp[bit][j], tmp)

print(dp[0][0])
0