結果

問題 No.1507 Road Blocked
ユーザー Akijin_007Akijin_007
提出日時 2023-05-12 11:36:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 180,608 KB
最終ジャッジ日時 2024-05-06 02:07:39
合計ジャッジ時間 12,945 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 379 ms
180,608 KB
testcase_04 AC 370 ms
96,128 KB
testcase_05 AC 364 ms
95,488 KB
testcase_06 AC 360 ms
95,616 KB
testcase_07 AC 371 ms
95,744 KB
testcase_08 AC 368 ms
95,616 KB
testcase_09 AC 371 ms
96,384 KB
testcase_10 AC 374 ms
95,744 KB
testcase_11 AC 370 ms
95,872 KB
testcase_12 AC 391 ms
95,744 KB
testcase_13 AC 372 ms
95,488 KB
testcase_14 AC 384 ms
96,128 KB
testcase_15 AC 370 ms
95,488 KB
testcase_16 AC 367 ms
95,488 KB
testcase_17 AC 371 ms
95,616 KB
testcase_18 AC 365 ms
95,488 KB
testcase_19 AC 366 ms
96,000 KB
testcase_20 AC 374 ms
95,616 KB
testcase_21 AC 375 ms
95,488 KB
testcase_22 AC 375 ms
95,872 KB
testcase_23 AC 366 ms
96,000 KB
testcase_24 AC 372 ms
95,616 KB
testcase_25 AC 373 ms
95,616 KB
testcase_26 AC 377 ms
95,872 KB
testcase_27 AC 375 ms
95,488 KB
testcase_28 AC 369 ms
95,616 KB
testcase_29 AC 369 ms
95,616 KB
testcase_30 AC 361 ms
96,000 KB
testcase_31 AC 370 ms
95,616 KB
testcase_32 AC 364 ms
96,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(200000)

N = int(input())
mod = 998244353

to = [[] for i in range(N)]
e = []
for i in range(N-1):
    u, v = list(map(int, input().split()))
    to[u-1].append(v-1)
    to[v-1].append(u-1)
    e.append((u-1, v-1))

a = [-1] * N
b = [-1] * N

time = 0

def DFS(x):
    global time
    global a
    global b
    a[x] = time
    time += 1

    for y in to[x]:
        if a[y] == -1:
            DFS(y)

    b[x] = time
    time += 1

DFS(0)
# print(a)
# print(b)

ans = 0
for i in range(N-1):
    s, t = e[i]
    m = min((b[s]-a[s]+1)//2, (b[t]-a[t]+1)//2)

    ans = (ans + m*(N-m)) % mod
    # print(m, ans)

u = (N * (N-1) * (N-1) // 2) % mod
ans = (ans * pow(u, mod-2, mod))
print((1 - ans) % mod)
0