結果

問題 No.1103 Directed Length Sum
ユーザー Kiri8128Kiri8128
提出日時 2020-07-03 22:11:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,359 ms / 3,000 ms
コード長 690 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 302,036 KB
最終ジャッジ日時 2024-09-17 02:32:17
合計ジャッジ時間 18,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,428 KB
testcase_01 AC 37 ms
53,376 KB
testcase_02 AC 526 ms
261,452 KB
testcase_03 AC 665 ms
302,036 KB
testcase_04 AC 1,234 ms
197,632 KB
testcase_05 AC 2,359 ms
267,156 KB
testcase_06 AC 716 ms
150,528 KB
testcase_07 AC 159 ms
96,288 KB
testcase_08 AC 286 ms
107,556 KB
testcase_09 AC 122 ms
88,696 KB
testcase_10 AC 347 ms
112,960 KB
testcase_11 AC 1,354 ms
205,280 KB
testcase_12 AC 766 ms
147,476 KB
testcase_13 AC 358 ms
115,600 KB
testcase_14 AC 110 ms
84,460 KB
testcase_15 AC 601 ms
142,868 KB
testcase_16 AC 1,596 ms
217,012 KB
testcase_17 AC 1,642 ms
243,380 KB
testcase_18 AC 330 ms
113,984 KB
testcase_19 AC 1,472 ms
210,104 KB
testcase_20 AC 132 ms
90,516 KB
testcase_21 AC 207 ms
104,568 KB
testcase_22 AC 1,062 ms
181,312 KB
testcase_23 AC 623 ms
148,272 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