結果

問題 No.1103 Directed Length Sum
ユーザー convexineqconvexineq
提出日時 2021-05-10 05:35:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 633 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 268,976 KB
最終ジャッジ日時 2024-09-19 09:29:01
合計ジャッジ時間 14,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,280 KB
testcase_01 AC 34 ms
52,948 KB
testcase_02 WA -
testcase_03 AC 438 ms
268,976 KB
testcase_04 AC 797 ms
165,668 KB
testcase_05 AC 1,361 ms
239,520 KB
testcase_06 AC 483 ms
143,904 KB
testcase_07 AC 124 ms
91,464 KB
testcase_08 AC 165 ms
100,644 KB
testcase_09 AC 91 ms
84,408 KB
testcase_10 AC 242 ms
109,364 KB
testcase_11 AC 867 ms
182,720 KB
testcase_12 AC 494 ms
144,280 KB
testcase_13 AC 236 ms
111,288 KB
testcase_14 AC 83 ms
82,732 KB
testcase_15 AC 379 ms
122,824 KB
testcase_16 AC 960 ms
182,268 KB
testcase_17 AC 1,024 ms
212,232 KB
testcase_18 AC 236 ms
108,984 KB
testcase_19 AC 865 ms
196,012 KB
testcase_20 AC 106 ms
87,808 KB
testcase_21 AC 170 ms
98,256 KB
testcase_22 AC 699 ms
153,500 KB
testcase_23 AC 386 ms
134,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input())
g = [[] for _ in range(n)]
is_child = [0]*n
for i in range(n-1):
    a,b = map(int,sys.stdin.readline().split())
    g[a-1].append(b-1)
    is_child[b-1] = 1
root = is_child.index(0)

order = []
st = [root]
parent = [-1]*n
depth = [1]*n
while st:
    v = st.pop()
    order.append(v)
    for c in g[v]:
        if c != parent[v]:
            st.append(c)
            parent[c] = v
            depth[c] = depth[v] + 1

size = [1]*n
for i in order[::-1]:
    if i==root: break
    size[parent[i]] += size[i]

ans = 0
for i in range(n):
    if i==root: continue
    ans += size[i]*depth[parent[i]]
print(ans)
0