結果

問題 No.1103 Directed Length Sum
ユーザー qumazakiqumazaki
提出日時 2020-07-04 02:30:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 358,492 KB
最終ジャッジ日時 2024-09-17 06:57:50
合計ジャッジ時間 14,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 32 ms
52,224 KB
testcase_02 WA -
testcase_03 AC 538 ms
353,608 KB
testcase_04 AC 858 ms
265,060 KB
testcase_05 AC 1,743 ms
358,492 KB
testcase_06 AC 442 ms
196,888 KB
testcase_07 AC 119 ms
110,208 KB
testcase_08 AC 162 ms
126,592 KB
testcase_09 AC 92 ms
96,768 KB
testcase_10 AC 231 ms
138,312 KB
testcase_11 AC 814 ms
266,928 KB
testcase_12 AC 501 ms
197,268 KB
testcase_13 AC 252 ms
144,128 KB
testcase_14 AC 80 ms
92,732 KB
testcase_15 AC 381 ms
171,060 KB
testcase_16 AC 1,074 ms
281,332 KB
testcase_17 AC 1,237 ms
301,132 KB
testcase_18 AC 253 ms
137,984 KB
testcase_19 AC 824 ms
268,220 KB
testcase_20 AC 100 ms
102,268 KB
testcase_21 AC 161 ms
122,112 KB
testcase_22 AC 713 ms
246,088 KB
testcase_23 AC 423 ms
182,656 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()))

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][1] += score[i][1] + 1

print(ans)
0