結果

問題 No.309 シャイな人たち (1)
ユーザー maspymaspy
提出日時 2020-05-16 16:47:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 4,000 ms
コード長 1,242 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 120,268 KB
最終ジャッジ日時 2024-09-22 12:25:15
合計ジャッジ時間 2,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
115,556 KB
testcase_01 AC 128 ms
116,760 KB
testcase_02 AC 113 ms
115,920 KB
testcase_03 AC 122 ms
116,496 KB
testcase_04 AC 51 ms
65,912 KB
testcase_05 AC 71 ms
80,292 KB
testcase_06 AC 119 ms
114,992 KB
testcase_07 AC 109 ms
113,564 KB
testcase_08 AC 119 ms
116,324 KB
testcase_09 AC 127 ms
118,564 KB
testcase_10 AC 146 ms
120,268 KB
testcase_11 AC 143 ms
119,532 KB
testcase_12 AC 137 ms
118,680 KB
testcase_13 AC 37 ms
53,288 KB
testcase_14 AC 37 ms
53,552 KB
testcase_15 AC 69 ms
79,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

H, W = map(int, readline().split())
readline()
P = []
for _ in range(H):
    P += [0.0] + [0.01 * int(x) for x in readline().split()]
readline()
S = []
for _ in range(H):
    S += [4] + list(map(int, readline().split()))

W += 1

# (bit列, n) = (挙手の状態, リーチ目人数) に対して確率を持つ
dp = [0.0] * (W * (1 << W))
dp[0] = 1.0
mask = (1 << W) - 1
answer = 0
for p, s in zip(P, S):
    newdp = [0.0] * (W * (1 << W))
    for i in range(W * (1 << W)):
        if dp[i] == 0.0:
            continue
        bit, n = divmod(i, W)
        # 無知
        bit1 = (bit << 1) & mask
        newdp[bit1 * W] += dp[i] * (1 - p)
        # 知
        s1 = s - (bit & 1) - (bit >> W - 1)
        if s1 > 1:
            # 挙手しない確定
            newdp[bit1 * W] += dp[i] * p
        elif s1 == 1:
            # リーチ目に 1 人追加
            newdp[bit1 * W + n + 1] += dp[i] * p
        else:
            # 挙手する確定
            answer += (n + 1) * dp[i] * p
            bit1 |= (1 << n + 1) - 1
            newdp[bit1 * W] += dp[i] * p
    dp = newdp

print(answer)
0