結果

問題 No.1103 Directed Length Sum
ユーザー Kiri8128Kiri8128
提出日時 2020-07-03 22:09:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,803 ms / 3,000 ms
コード長 690 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 302,284 KB
最終ジャッジ日時 2024-09-17 02:28:46
合計ジャッジ時間 23,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,876 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 654 ms
261,836 KB
testcase_03 AC 784 ms
302,284 KB
testcase_04 AC 1,520 ms
198,016 KB
testcase_05 AC 2,803 ms
266,540 KB
testcase_06 AC 864 ms
150,368 KB
testcase_07 AC 207 ms
96,352 KB
testcase_08 AC 336 ms
107,520 KB
testcase_09 AC 158 ms
88,716 KB
testcase_10 AC 463 ms
112,856 KB
testcase_11 AC 1,673 ms
204,944 KB
testcase_12 AC 967 ms
147,436 KB
testcase_13 AC 463 ms
115,476 KB
testcase_14 AC 139 ms
84,544 KB
testcase_15 AC 714 ms
143,232 KB
testcase_16 AC 1,958 ms
217,472 KB
testcase_17 AC 2,058 ms
243,220 KB
testcase_18 AC 465 ms
114,176 KB
testcase_19 AC 1,677 ms
210,480 KB
testcase_20 AC 178 ms
90,584 KB
testcase_21 AC 289 ms
104,576 KB
testcase_22 AC 1,361 ms
181,500 KB
testcase_23 AC 790 ms
148,480 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