結果

問題 No.1103 Directed Length Sum
ユーザー Ldio03Ldio03
提出日時 2020-05-06 01:17:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 268,804 KB
最終ジャッジ日時 2024-06-27 12:08:35
合計ジャッジ時間 16,941 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,244 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 WA -
testcase_03 AC 788 ms
268,804 KB
testcase_04 AC 995 ms
165,800 KB
testcase_05 AC 1,823 ms
228,492 KB
testcase_06 AC 649 ms
144,856 KB
testcase_07 AC 173 ms
91,720 KB
testcase_08 AC 243 ms
101,172 KB
testcase_09 AC 133 ms
85,376 KB
testcase_10 AC 336 ms
109,468 KB
testcase_11 AC 1,087 ms
194,684 KB
testcase_12 AC 658 ms
145,024 KB
testcase_13 AC 338 ms
111,744 KB
testcase_14 AC 123 ms
83,480 KB
testcase_15 AC 537 ms
122,080 KB
testcase_16 AC 1,277 ms
182,256 KB
testcase_17 AC 1,351 ms
190,048 KB
testcase_18 AC 333 ms
109,312 KB
testcase_19 AC 1,165 ms
176,480 KB
testcase_20 AC 151 ms
86,496 KB
testcase_21 AC 243 ms
98,304 KB
testcase_22 AC 932 ms
172,160 KB
testcase_23 AC 543 ms
135,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#n = 頂点数,edge = 隣接リスト
n=int(input())
edge=[[] for i in range(n)]
isroot=[True]*n
for i in range(n-1):
    a,b=map(int,input().split())
    a-=1;b-=1
    edge[a].append(b)
    isroot[b]=False
Root=0
for i in range(n):
    if isroot[i]:Root=i;break   
order = []
par = [-1]*n
tank = [Root]
depth=[0]*n
while tank:
    pele = tank.pop()
    order.append(pele)
    for e in edge[pele]:
        if e == par[pele]:
            continue
        tank.append(e)
        par[e] = pele
        depth[e]=depth[pele]+1
size = [1]*n
for e in order[::-1]:
    if e == Root:
        break
    size[par[e]] += size[e]
ans=0
for i in range(n):
    ans+=size[i]*depth[i]
print(ans)
0