結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 1,127 ms
439,492 KB
testcase_03 AC 864 ms
391,332 KB
testcase_04 AC 1,470 ms
244,812 KB
testcase_05 TLE -
testcase_06 AC 879 ms
183,744 KB
testcase_07 AC 204 ms
100,920 KB
testcase_08 AC 280 ms
116,756 KB
testcase_09 AC 161 ms
94,644 KB
testcase_10 AC 430 ms
130,572 KB
testcase_11 AC 1,575 ms
260,800 KB
testcase_12 AC 904 ms
185,520 KB
testcase_13 AC 799 ms
135,540 KB
testcase_14 AC 275 ms
86,696 KB
testcase_15 AC 693 ms
165,824 KB
testcase_16 AC 2,259 ms
283,212 KB
testcase_17 AC 2,426 ms
294,848 KB
testcase_18 AC 404 ms
133,972 KB
testcase_19 AC 1,700 ms
263,800 KB
testcase_20 AC 177 ms
98,832 KB
testcase_21 AC 294 ms
113,864 KB
testcase_22 AC 1,330 ms
229,440 KB
testcase_23 AC 742 ms
170,032 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]

    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