結果

問題 No.1103 Directed Length Sum
ユーザー Kiri8128Kiri8128
提出日時 2020-07-03 22:12:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,876 ms / 3,000 ms
コード長 692 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 301,992 KB
最終ジャッジ日時 2024-09-17 02:47:19
合計ジャッジ時間 23,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,760 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 685 ms
258,892 KB
testcase_03 AC 844 ms
301,992 KB
testcase_04 AC 1,572 ms
198,016 KB
testcase_05 AC 2,876 ms
263,392 KB
testcase_06 AC 893 ms
150,400 KB
testcase_07 AC 243 ms
96,184 KB
testcase_08 AC 343 ms
107,520 KB
testcase_09 AC 164 ms
88,448 KB
testcase_10 AC 427 ms
117,504 KB
testcase_11 AC 1,682 ms
205,188 KB
testcase_12 AC 955 ms
148,252 KB
testcase_13 AC 491 ms
113,984 KB
testcase_14 AC 145 ms
85,056 KB
testcase_15 AC 744 ms
143,208 KB
testcase_16 AC 1,870 ms
215,196 KB
testcase_17 AC 1,994 ms
238,444 KB
testcase_18 AC 451 ms
117,740 KB
testcase_19 AC 1,742 ms
210,192 KB
testcase_20 AC 175 ms
90,504 KB
testcase_21 AC 315 ms
104,908 KB
testcase_22 AC 1,240 ms
185,052 KB
testcase_23 AC 757 ms
146,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

from collections import deque
N = int(input())
X = [[] for i in range(N)]
Y = [0] * N
for i in range(N-1):
    x, y = map(int, input().split())
    X[x-1].append(y-1)
    X[y-1].append(x-1)
    Y[y-1] += 1

for i in range(N):
    if Y[i] == 0:
        s = i
        break

P = [-1] * N
Q = deque([s])

D = [0] * N
R = []
while Q:
    i = deque.popleft(Q)
    R.append(i)
    for a in X[i]:
        if a != P[i]:
            P[a] = i
            D[a] = D[i] + 1
            # X[a].remove(i)
            deque.append(Q, a)

C = [1] * N
ans = 0
for i in R[1:][::-1]:
    C[P[i]] += C[i]
    ans += D[i] * C[i]

print(ans % (10 ** 9 + 7))
0