結果

問題 No.1103 Directed Length Sum
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-06 23:07:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 977 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 439,892 KB
最終ジャッジ日時 2024-05-06 21:36:52
合計ジャッジ時間 11,429 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 46 ms
52,224 KB
testcase_02 AC 1,175 ms
439,892 KB
testcase_03 AC 866 ms
383,700 KB
testcase_04 AC 1,634 ms
242,544 KB
testcase_05 TLE -
testcase_06 AC 908 ms
187,996 KB
testcase_07 AC 202 ms
101,600 KB
testcase_08 AC 290 ms
118,580 KB
testcase_09 AC 135 ms
89,080 KB
testcase_10 AC 406 ms
133,672 KB
testcase_11 AC 1,624 ms
260,436 KB
testcase_12 AC 841 ms
190,692 KB
testcase_13 AC 413 ms
137,492 KB
testcase_14 AC 130 ms
87,236 KB
testcase_15 AC 692 ms
171,500 KB
testcase_16 AC 2,260 ms
285,016 KB
testcase_17 AC 2,380 ms
295,892 KB
testcase_18 AC 440 ms
136,168 KB
testcase_19 AC 1,653 ms
267,020 KB
testcase_20 AC 183 ms
99,752 KB
testcase_21 AC 287 ms
117,100 KB
testcase_22 AC 1,290 ms
231,268 KB
testcase_23 AC 688 ms
173,432 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)
0