結果

問題 No.1103 Directed Length Sum
ユーザー toyuzukotoyuzuko
提出日時 2020-07-07 15:36:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 800 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 396,312 KB
最終ジャッジ日時 2024-10-01 08:17:43
合計ジャッジ時間 25,006 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 WA -
testcase_03 AC 1,519 ms
396,312 KB
testcase_04 AC 1,308 ms
202,548 KB
testcase_05 AC 2,683 ms
300,300 KB
testcase_06 AC 953 ms
157,332 KB
testcase_07 AC 231 ms
94,772 KB
testcase_08 AC 304 ms
106,324 KB
testcase_09 AC 160 ms
88,168 KB
testcase_10 AC 417 ms
117,116 KB
testcase_11 AC 1,453 ms
214,156 KB
testcase_12 AC 845 ms
158,528 KB
testcase_13 AC 402 ms
116,692 KB
testcase_14 AC 132 ms
82,672 KB
testcase_15 AC 671 ms
139,148 KB
testcase_16 AC 1,707 ms
233,700 KB
testcase_17 AC 1,883 ms
244,120 KB
testcase_18 AC 388 ms
118,516 KB
testcase_19 AC 1,621 ms
218,032 KB
testcase_20 AC 200 ms
91,856 KB
testcase_21 AC 291 ms
101,584 KB
testcase_22 AC 1,235 ms
191,172 KB
testcase_23 AC 651 ms
142,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 1000000007

N = int(input())
edge = [tuple(map(int, input().split())) for _ in range(N - 1)]
tree = [[] for _ in range(N)]
par = [None for _ in range(N)]
dep = [None for _ in range(N)]
cum = [None for _ in range(N)]

for e in edge:
    tree[e[0] - 1].append(e[1] - 1)
    par[e[1] - 1] = e[0] - 1

for i in range(N):
    if par[i] is None:
        root = i

stack = [root]
dep[root] = 0

while stack:
    node = stack.pop()
    for adj in tree[node]:
        if dep[adj] is not None:
            continue
        dep[adj] = dep[node] + 1
        stack.append(adj)

stack = [root]
cum[root] = 0

while stack:
    node = stack.pop()
    for adj in tree[node]:
        if cum[adj] is not None:
            continue
        cum[adj] = cum[node] + dep[adj]
        stack.append(adj)

print(sum(cum))
0