結果

問題 No.298 話の伝達
ユーザー rpy3cpprpy3cpp
提出日時 2015-11-07 02:37:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 845 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,008 KB
最終ジャッジ日時 2024-09-13 13:47:13
合計ジャッジ時間 11,717 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 3,526 ms
10,624 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 33 ms
10,752 KB
testcase_10 AC 41 ms
10,752 KB
testcase_11 AC 235 ms
10,880 KB
testcase_12 AC 131 ms
10,752 KB
testcase_13 AC 252 ms
10,752 KB
testcase_14 AC 170 ms
10,880 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    N, M = map(int, input().split())
    Cs = [dict() for i in range(N)]
    for m in range(M):
        src, dst, c = map(int, input().split())
        Cs[dst][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].items():
            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