結果

問題 No.1103 Directed Length Sum
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-06 23:11:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,233 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 440,124 KB
最終ジャッジ日時 2024-05-06 21:38:48
合計ジャッジ時間 9,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,096 KB
testcase_01 AC 35 ms
53,900 KB
testcase_02 AC 1,081 ms
440,124 KB
testcase_03 AC 827 ms
392,452 KB
testcase_04 AC 1,332 ms
244,988 KB
testcase_05 TLE -
testcase_06 AC 772 ms
183,572 KB
testcase_07 AC 172 ms
101,096 KB
testcase_08 AC 232 ms
117,108 KB
testcase_09 AC 125 ms
94,832 KB
testcase_10 AC 360 ms
130,860 KB
testcase_11 AC 1,495 ms
260,572 KB
testcase_12 AC 830 ms
186,096 KB
testcase_13 AC 410 ms
135,716 KB
testcase_14 AC 111 ms
87,016 KB
testcase_15 AC 690 ms
165,852 KB
testcase_16 AC 2,199 ms
283,344 KB
testcase_17 AC 2,206 ms
294,568 KB
testcase_18 AC 349 ms
133,624 KB
testcase_19 AC 1,557 ms
264,656 KB
testcase_20 AC 146 ms
99,152 KB
testcase_21 AC 234 ms
114,060 KB
testcase_22 AC 1,203 ms
229,844 KB
testcase_23 AC 656 ms
170,404 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