結果

問題 No.298 話の伝達
ユーザー rpy3cpprpy3cpp
提出日時 2015-11-07 02:41:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 906 ms / 5,000 ms
コード長 842 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 76,108 KB
最終ジャッジ日時 2024-09-13 13:47:47
合計ジャッジ時間 3,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,220 KB
testcase_01 AC 38 ms
52,732 KB
testcase_02 AC 39 ms
52,488 KB
testcase_03 AC 40 ms
52,536 KB
testcase_04 AC 39 ms
52,780 KB
testcase_05 AC 357 ms
75,884 KB
testcase_06 AC 52 ms
63,452 KB
testcase_07 AC 38 ms
53,200 KB
testcase_08 AC 39 ms
52,568 KB
testcase_09 AC 53 ms
64,408 KB
testcase_10 AC 77 ms
76,108 KB
testcase_11 AC 112 ms
75,800 KB
testcase_12 AC 73 ms
75,536 KB
testcase_13 AC 108 ms
75,696 KB
testcase_14 AC 91 ms
75,676 KB
testcase_15 AC 39 ms
54,100 KB
testcase_16 AC 906 ms
75,524 KB
testcase_17 AC 66 ms
73,388 KB
testcase_18 AC 231 ms
75,884 KB
testcase_19 AC 39 ms
52,548 KB
testcase_20 AC 461 ms
75,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N, M = map(int, input().split())
    Cs = [[] for i in range(N)]
    for m in range(M):
        src, dst, c = map(int, input().split())
        Cs[dst].append((src, c/100))
    return N, M, Cs

def solve(N, M, Cs):
    vs = [v for v in range(1, N)]
    vs.sort(key=lambda v: len(Cs[v]))
    prob = 0
    for on_off in range(1 + (1 << (N - 1)), 1 << N, 2):
        prob += calc_prob(on_off, vs, Cs)
    return prob

def calc_prob(on_off, vs, Cs):
    prob = 1
    for v in vs:
        if prob == 0:
            return 0
        p_off = 1
        for u, c in Cs[v]:
            if not on_off & (1 << u):
                continue
            p_off *= (1 - c)
        if on_off & (1 << v):
            prob *= (1 - p_off)
        else:
            prob *= p_off
    return prob

N, M, Cs = read_data()
print(solve(N, M, Cs))
0