結果

問題 No.1103 Directed Length Sum
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-07 02:18:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,233 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 440,124 KB
最終ジャッジ日時 2024-05-06 21:44:30
合計ジャッジ時間 11,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,736 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 1,260 ms
440,124 KB
testcase_03 AC 1,015 ms
391,472 KB
testcase_04 AC 1,310 ms
244,376 KB
testcase_05 TLE -
testcase_06 AC 776 ms
183,872 KB
testcase_07 AC 175 ms
101,168 KB
testcase_08 AC 258 ms
116,992 KB
testcase_09 AC 150 ms
95,156 KB
testcase_10 AC 364 ms
130,420 KB
testcase_11 AC 1,425 ms
260,900 KB
testcase_12 AC 836 ms
186,184 KB
testcase_13 AC 376 ms
135,908 KB
testcase_14 AC 123 ms
86,692 KB
testcase_15 AC 593 ms
165,680 KB
testcase_16 AC 1,986 ms
282,676 KB
testcase_17 AC 2,235 ms
294,188 KB
testcase_18 AC 353 ms
133,432 KB
testcase_19 AC 1,583 ms
263,792 KB
testcase_20 AC 191 ms
98,952 KB
testcase_21 AC 249 ms
114,120 KB
testcase_22 AC 1,155 ms
229,296 KB
testcase_23 AC 675 ms
170,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 10**9+7

def main():
    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

    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]
            c[par[v]] %= mod

    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)

if __name__ == '__main__':
    main()
0