結果
問題 | No.1103 Directed Length Sum |
ユーザー | Ldio03 |
提出日時 | 2020-05-06 01:16:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 640 bytes |
コンパイル時間 | 146 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 190,976 KB |
最終ジャッジ日時 | 2024-06-27 12:07:40 |
合計ジャッジ時間 | 7,483 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,128 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
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)