結果

問題 No.1103 Directed Length Sum
ユーザー qumazakiqumazaki
提出日時 2020-07-04 02:32:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,711 ms / 3,000 ms
コード長 788 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 358,896 KB
最終ジャッジ日時 2024-09-17 07:00:04
合計ジャッジ時間 15,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,856 KB
testcase_01 AC 38 ms
52,592 KB
testcase_02 AC 816 ms
347,752 KB
testcase_03 AC 575 ms
353,452 KB
testcase_04 AC 873 ms
265,460 KB
testcase_05 AC 1,711 ms
358,896 KB
testcase_06 AC 511 ms
196,908 KB
testcase_07 AC 131 ms
110,200 KB
testcase_08 AC 210 ms
126,948 KB
testcase_09 AC 100 ms
96,868 KB
testcase_10 AC 307 ms
138,368 KB
testcase_11 AC 931 ms
267,628 KB
testcase_12 AC 606 ms
197,016 KB
testcase_13 AC 314 ms
144,400 KB
testcase_14 AC 91 ms
92,644 KB
testcase_15 AC 457 ms
171,168 KB
testcase_16 AC 1,135 ms
281,744 KB
testcase_17 AC 1,264 ms
300,840 KB
testcase_18 AC 310 ms
138,156 KB
testcase_19 AC 956 ms
268,232 KB
testcase_20 AC 114 ms
102,480 KB
testcase_21 AC 188 ms
122,116 KB
testcase_22 AC 793 ms
246,112 KB
testcase_23 AC 486 ms
182,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

n = int(readline())
ab = list(map(int,read().split()))
mod = 10**9 + 7

it = iter(ab)
root = (n+1)*n//2
parent = [0] * (n+1)
links = [[] for _ in range(n+1)]
for a,b in zip(it,it):
    links[a].append(b)
    parent[b] = a
    root -= b

tp = [root]
stack = [root]
while(stack):
    next = []
    while(stack):
        i = stack.pop()
        for j in links[i]:
            next.append(j)
            tp.append(j)
    stack = next[::]

score = [[0,0] for _ in range(n+1)]

ans = 0
for i in tp[::-1]:
    ans += score[i][0]
    par = parent[i]
    score[par][0] += score[i][0] + score[i][1] + 1
    score[par][0] %= mod
    score[par][1] += score[i][1] + 1


print(ans%mod)
0