結果

問題 No.1103 Directed Length Sum
ユーザー yuly3yuly3
提出日時 2020-07-27 23:50:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,346 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 444,676 KB
最終ジャッジ日時 2024-06-28 20:23:08
合計ジャッジ時間 14,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 TLE -
testcase_03 AC 2,238 ms
168,628 KB
testcase_04 AC 2,144 ms
102,576 KB
testcase_05 TLE -
testcase_06 AC 1,303 ms
76,252 KB
testcase_07 AC 279 ms
26,740 KB
testcase_08 AC 462 ms
32,824 KB
testcase_09 AC 178 ms
20,156 KB
testcase_10 AC 654 ms
43,692 KB
testcase_11 AC 2,326 ms
109,632 KB
testcase_12 AC 1,371 ms
76,864 KB
testcase_13 AC 619 ms
44,552 KB
testcase_14 AC 136 ms
18,596 KB
testcase_15 AC 1,036 ms
57,772 KB
testcase_16 AC 2,643 ms
136,236 KB
testcase_17 AC 2,827 ms
140,456 KB
testcase_18 AC 604 ms
43,468 KB
testcase_19 AC 2,528 ms
128,156 KB
testcase_20 AC 204 ms
22,000 KB
testcase_21 AC 365 ms
31,164 KB
testcase_22 AC 2,047 ms
96,136 KB
testcase_23 AC 1,081 ms
60,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


class TreeDP:
    def __init__(self, graph, merge, add_root, ide_ele):
        self.graph = graph
        self.merge = merge
        self.add_root = add_root
        self.ide_ele = ide_ele
        self.dp = [ide_ele] * len(graph)
        self.depth = [0] * len(graph)
    
    def dfs(self, cur, parent=-1):
        dp_cum = self.ide_ele
        if parent != -1:
            self.depth[cur] = self.depth[parent] + 1
        for child in self.graph[cur]:
            if child == parent:
                continue
            dp_cum = self.merge(dp_cum, self.dfs(child, cur))
        self.dp[cur] = self.add_root(dp_cum)
        return self.dp[cur]


def solve():
    MOD = 10 ** 9 + 7
    N = int(rl())
    graph = [[] for _ in range(N)]
    r = {u for u in range(N)}
    for _ in range(N - 1):
        a, b = map(lambda n: int(n) - 1, rl().split())
        graph[a].append(b)
        r.remove(b)
    
    merge = lambda n, m: n + m
    add_root = lambda n: n + 1
    tree_dp = TreeDP(graph, merge, add_root, 0)

    root = list(r)[0]
    tree_dp.dfs(root)
    ans = 0
    for parent in range(N):
        for child in graph[parent]:
            ans += (tree_dp.depth[parent] + 1) * tree_dp.dp[child]
            ans %= MOD
    print(ans)


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