結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー hir355hir355
提出日時 2021-03-05 22:21:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 101,824 KB
最終ジャッジ日時 2024-10-07 02:50:14
合計ジャッジ時間 7,645 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,912 KB
testcase_01 AC 36 ms
52,592 KB
testcase_02 AC 36 ms
52,252 KB
testcase_03 AC 293 ms
97,688 KB
testcase_04 AC 293 ms
98,092 KB
testcase_05 AC 296 ms
97,808 KB
testcase_06 AC 305 ms
98,120 KB
testcase_07 AC 288 ms
97,748 KB
testcase_08 AC 207 ms
90,968 KB
testcase_09 AC 140 ms
82,608 KB
testcase_10 AC 142 ms
83,312 KB
testcase_11 AC 115 ms
79,236 KB
testcase_12 AC 181 ms
87,584 KB
testcase_13 AC 202 ms
89,656 KB
testcase_14 AC 210 ms
90,524 KB
testcase_15 AC 177 ms
85,712 KB
testcase_16 AC 94 ms
77,340 KB
testcase_17 AC 92 ms
77,540 KB
testcase_18 AC 278 ms
94,304 KB
testcase_19 AC 112 ms
79,096 KB
testcase_20 AC 88 ms
77,108 KB
testcase_21 AC 164 ms
85,676 KB
testcase_22 AC 154 ms
84,860 KB
testcase_23 AC 94 ms
77,048 KB
testcase_24 AC 93 ms
77,380 KB
testcase_25 AC 91 ms
76,972 KB
testcase_26 AC 94 ms
77,256 KB
testcase_27 AC 49 ms
62,724 KB
testcase_28 AC 66 ms
70,616 KB
testcase_29 AC 92 ms
77,092 KB
testcase_30 AC 98 ms
77,352 KB
testcase_31 AC 84 ms
76,788 KB
testcase_32 AC 94 ms
77,216 KB
testcase_33 AC 110 ms
79,748 KB
testcase_34 AC 251 ms
97,452 KB
testcase_35 AC 139 ms
85,128 KB
testcase_36 AC 88 ms
77,712 KB
testcase_37 AC 201 ms
101,064 KB
testcase_38 AC 189 ms
101,824 KB
testcase_39 AC 36 ms
52,872 KB
testcase_40 AC 36 ms
52,476 KB
testcase_41 AC 36 ms
52,464 KB
testcase_42 AC 36 ms
53,288 KB
testcase_43 AC 36 ms
53,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def tree_dfs(g):
    order = []
    s = [0]
    d = [0] * n
    while s:
        p = s.pop()
        d[p] = 1
        order.append(p)
        for node in g[p]:
            if d[node] == 0:
                s.append(node)
    return order

n = int(input())
g = [[] for _ in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    g[a - 1].append(b - 1)
    g[b - 1].append(a - 1)
order = tree_dfs(g)
d = [0] * n
for v in order[::-1]:
    d[v] = 1
    for node in g[v]:
        if d[node] > 0:
            d[v] += d[node]
d1 = [0] * n
ans = 0
for v in order[::-1]:
    d1[v] = 1
    t = 1
    for node in g[v]:
        if d1[node]:
            ans += d[node] * (n - d[node])
            t += d[node]
    ans += (n - t) * t
print(ans + n * n)
0