結果

問題 No.2504 NOT Path Painting
ユーザー suisensuisen
提出日時 2023-07-22 17:02:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,155 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 107,908 KB
最終ジャッジ日時 2024-09-22 16:40:20
合計ジャッジ時間 17,660 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
67,420 KB
testcase_01 AC 842 ms
86,488 KB
testcase_02 AC 780 ms
85,456 KB
testcase_03 AC 896 ms
90,312 KB
testcase_04 AC 876 ms
88,320 KB
testcase_05 AC 921 ms
91,128 KB
testcase_06 AC 877 ms
88,404 KB
testcase_07 AC 925 ms
91,444 KB
testcase_08 AC 882 ms
90,896 KB
testcase_09 AC 868 ms
89,344 KB
testcase_10 AC 883 ms
86,644 KB
testcase_11 AC 896 ms
91,920 KB
testcase_12 AC 938 ms
89,472 KB
testcase_13 AC 759 ms
82,448 KB
testcase_14 AC 730 ms
84,864 KB
testcase_15 AC 938 ms
104,840 KB
testcase_16 AC 963 ms
107,908 KB
testcase_17 AC 1,019 ms
107,216 KB
testcase_18 AC 760 ms
104,216 KB
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List

def solve(n: int, g: List[List[int]]):
    m = n * (n + 1) // 2

    ans = 0

    def dfs(u: int, p: int) -> int:
        nonlocal ans

        p_u = m

        sub_u = 1
        for v in g[u]:
            if v == p:
                continue
            sub_v = dfs(v, u)

            p_u -= sub_v * (sub_v + 1) // 2

            p_uv = sub_v * (n - sub_v)
            ans -= m * modinv(m - p_uv) % P

            sub_u += sub_v
        
        if p != -1:
            sub_p = n - sub_u
            p_u -= sub_p * (sub_p + 1) // 2
        
        ans += m * modinv(m - p_u) % P

        return sub_u
    
    dfs(0, -1)

    return ans % P

if __name__ == '__main__':
    P = 998244353

    def modinv(v: int):
        return pow(v, P - 2, P)
    
    answers = []

    T = int(input())
    for _ in range(T):
        n = int(input())
        g = [[] for _ in range(n)]
        for _ in range(n - 1):
            u, v = map(int, input().split())
            u -= 1
            v -= 1
            g[u].append(v)
            g[v].append(u)
        
        answers.append(solve(n, g))
    
    print('\n'.join(map(str, answers)))
0