結果

問題 No.1688 Veterinarian
ユーザー 👑 rin204rin204
提出日時 2022-01-25 17:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 739 ms / 3,000 ms
コード長 1,025 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 182,056 KB
最終ジャッジ日時 2024-05-09 17:45:06
合計ジャッジ時間 3,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 39 ms
58,388 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 56 ms
68,736 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 739 ms
182,056 KB
testcase_09 AC 681 ms
178,296 KB
testcase_10 AC 216 ms
92,264 KB
testcase_11 AC 113 ms
79,964 KB
testcase_12 AC 35 ms
52,736 KB
testcase_13 AC 138 ms
79,508 KB
testcase_14 AC 39 ms
58,496 KB
testcase_15 AC 280 ms
104,148 KB
testcase_16 AC 44 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

memo = {}
def dfs(a, b, c, n):
    if (a, b, c, n) in memo:
        return memo[(a, b, c, n)]
    tot = a + b + c
    if n == 0 or tot <= 1:
        return 0, 0, 0
    ret = [0, 0, 0]
    
    div = tot * (tot - 1) // 2
    dif = div
    if a >= 2:
        aa = a * (a - 1) // 2
        dif -= aa
        tmp = dfs(a - 1, b, c, n - 1)
        ret[0] += aa / div
        for i in range(3):
            ret[i] += tmp[i] * aa / div
    if b >= 2:
        bb = b * (b - 1) // 2
        dif -= bb
        tmp = dfs(a, b - 1, c, n - 1)
        ret[1] += bb / div
        for i in range(3):
            ret[i] += tmp[i] * bb / div
    if c >= 2:
        cc = c * (c - 1) // 2
        dif -= cc
        tmp = dfs(a, b, c - 1, n - 1)
        ret[2] += cc / div
        for i in range(3):
            ret[i] += tmp[i] * cc / div
    tmp = dfs(a, b, c, n - 1)
    for i in range(3):
        ret[i] += tmp[i] * dif / div
    memo[(a, b, c, n)] = ret
    return ret
    

a, b, c, n = map(int, input().split())    
print(*dfs(a, b, c, n))
0