結果
問題 | No.2504 NOT Path Painting |
ユーザー | suisen |
提出日時 | 2023-07-22 17:07:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,202 bytes |
コンパイル時間 | 312 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 27,644 KB |
最終ジャッジ日時 | 2024-09-22 16:45:28 |
合計ジャッジ時間 | 43,206 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
18,460 KB |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import sys 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__': sys.setrecursionlimit(100000) 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)))