結果

問題 No.1103 Directed Length Sum
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-06 23:08:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 982 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 440,036 KB
最終ジャッジ日時 2024-05-06 21:37:24
合計ジャッジ時間 23,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 1,097 ms
440,036 KB
testcase_03 AC 909 ms
383,540 KB
testcase_04 AC 1,393 ms
242,544 KB
testcase_05 TLE -
testcase_06 AC 806 ms
188,112 KB
testcase_07 AC 178 ms
101,120 KB
testcase_08 AC 264 ms
118,444 KB
testcase_09 AC 129 ms
89,304 KB
testcase_10 AC 366 ms
133,528 KB
testcase_11 AC 1,505 ms
260,288 KB
testcase_12 AC 777 ms
190,696 KB
testcase_13 AC 436 ms
137,616 KB
testcase_14 AC 155 ms
87,100 KB
testcase_15 AC 680 ms
171,248 KB
testcase_16 AC 2,167 ms
285,020 KB
testcase_17 AC 2,249 ms
295,644 KB
testcase_18 AC 393 ms
136,300 KB
testcase_19 AC 1,621 ms
266,508 KB
testcase_20 AC 177 ms
99,372 KB
testcase_21 AC 288 ms
117,088 KB
testcase_22 AC 1,159 ms
231,504 KB
testcase_23 AC 714 ms
173,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
#input = sys.stdin.buffer.readline
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n = int(input())
g = [[] for _ in range(n)]
ind = [[] for _ in range(n)]
for i in range(n-1):
    a, b = map(int, input().split())
    a, b = a-1, b-1
    g[a].append(b)
    ind[b].append(a)

root = -1
for i in range(n):
    if len(ind[i]) == 0:
        root = i
        break

mod = 10**9+7

s = []
s.append(root)
order = []
par = [-1]*n
depth = [0]*n
while s:
    v = s.pop()
    order.append(v)
    for u in g[v]:
        if u == par[v]:
            continue
        par[u] = v
        s.append(u)
        depth[u] = depth[v]+1

child = [[] for _ in range(n)]
for v in range(n):
    if par[v] != -1:
        child[par[v]].append(v)

c = [1]*n
order.reverse()
for v in order:
    if par[v] != -1:
        c[par[v]] += c[v]

order.reverse()
ans = 0
for v in order:
    for u in child[v]:
        ans += (depth[v]+1)*c[u]%mod
        #ans %= mod
print(ans%mod)
0