結果

問題 No.1103 Directed Length Sum
ユーザー toyuzukotoyuzuko
提出日時 2020-07-07 15:48:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,588 ms / 3,000 ms
コード長 894 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 346,536 KB
最終ジャッジ日時 2024-10-01 08:34:51
合計ジャッジ時間 21,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 1,115 ms
335,976 KB
testcase_03 AC 1,098 ms
346,536 KB
testcase_04 AC 1,414 ms
203,096 KB
testcase_05 AC 2,588 ms
304,300 KB
testcase_06 AC 812 ms
160,880 KB
testcase_07 AC 198 ms
95,308 KB
testcase_08 AC 269 ms
103,640 KB
testcase_09 AC 135 ms
84,836 KB
testcase_10 AC 402 ms
117,116 KB
testcase_11 AC 1,416 ms
218,960 KB
testcase_12 AC 727 ms
156,120 KB
testcase_13 AC 334 ms
116,288 KB
testcase_14 AC 105 ms
81,592 KB
testcase_15 AC 548 ms
138,236 KB
testcase_16 AC 1,571 ms
236,048 KB
testcase_17 AC 1,786 ms
238,324 KB
testcase_18 AC 353 ms
116,876 KB
testcase_19 AC 1,496 ms
222,164 KB
testcase_20 AC 156 ms
91,368 KB
testcase_21 AC 254 ms
103,728 KB
testcase_22 AC 1,214 ms
197,052 KB
testcase_23 AC 640 ms
143,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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
        dep[adj] %= MOD
        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]
        cum[adj] %= MOD
        stack.append(adj)

print(sum(cum) % MOD)
0