結果

問題 No.1103 Directed Length Sum
ユーザー Ldio03Ldio03
提出日時 2020-05-06 01:18:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,877 ms / 3,000 ms
コード長 695 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 268,676 KB
最終ジャッジ日時 2024-06-27 12:08:17
合計ジャッジ時間 17,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 917 ms
260,480 KB
testcase_03 AC 809 ms
268,676 KB
testcase_04 AC 1,088 ms
165,724 KB
testcase_05 AC 1,877 ms
228,892 KB
testcase_06 AC 688 ms
144,780 KB
testcase_07 AC 172 ms
91,648 KB
testcase_08 AC 240 ms
100,992 KB
testcase_09 AC 137 ms
85,248 KB
testcase_10 AC 351 ms
109,732 KB
testcase_11 AC 1,157 ms
194,788 KB
testcase_12 AC 701 ms
145,352 KB
testcase_13 AC 355 ms
111,360 KB
testcase_14 AC 122 ms
83,100 KB
testcase_15 AC 539 ms
121,632 KB
testcase_16 AC 1,276 ms
182,400 KB
testcase_17 AC 1,374 ms
190,108 KB
testcase_18 AC 329 ms
109,352 KB
testcase_19 AC 1,178 ms
176,480 KB
testcase_20 AC 156 ms
86,532 KB
testcase_21 AC 239 ms
98,432 KB
testcase_22 AC 959 ms
172,160 KB
testcase_23 AC 555 ms
134,920 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]
    ans%=10**9+7
print(ans)
0