結果

問題 No.1103 Directed Length Sum
ユーザー takakintakakin
提出日時 2020-07-05 20:50:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 761 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 364,716 KB
最終ジャッジ日時 2024-09-22 21:19:58
合計ジャッジ時間 10,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,632 KB
testcase_01 AC 41 ms
55,484 KB
testcase_02 AC 1,038 ms
364,716 KB
testcase_03 AC 805 ms
323,264 KB
testcase_04 AC 1,713 ms
232,636 KB
testcase_05 TLE -
testcase_06 AC 1,082 ms
182,868 KB
testcase_07 AC 254 ms
101,380 KB
testcase_08 AC 389 ms
114,564 KB
testcase_09 AC 168 ms
91,820 KB
testcase_10 AC 546 ms
128,072 KB
testcase_11 AC 1,858 ms
233,896 KB
testcase_12 AC 1,083 ms
174,984 KB
testcase_13 AC 516 ms
132,624 KB
testcase_14 AC 138 ms
86,836 KB
testcase_15 AC 791 ms
158,260 KB
testcase_16 AC 2,123 ms
260,916 KB
testcase_17 AC 2,538 ms
264,076 KB
testcase_18 AC 536 ms
128,688 KB
testcase_19 AC 1,930 ms
248,048 KB
testcase_20 AC 199 ms
95,008 KB
testcase_21 AC 341 ms
110,796 KB
testcase_22 AC 1,507 ms
204,168 KB
testcase_23 AC 925 ms
153,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()

n=int(input())
deg=[0]*n
edge=[[] for _ in range(n)]
edge_r=[[] for _ in range(n)]
for _ in range(n-1):
  a,b=map(int,input().split())
  edge[a-1].append(b-1)
  edge_r[b-1].append(a-1)
  deg[b-1]+=1

from collections import deque
TS = list(v for v in range(n) if deg[v]==0)
deq = deque(TS)
used = [0]*n

while deq:
  v = deq.popleft()
  for t in edge[v]:
    deg[t] -= 1
    if deg[t]==0:
      deq.append(t)
      TS.append(t)

L,R=[0]*n,[0]*n
for i in range(n):
  v=TS[i]
  for g in edge[v]:
    L[g]+=L[v]+1

for i in range(n)[::-1]:
  v=TS[i]
  for g in edge_r[v]:
    R[g]+=R[v]+1
ans=0
mod=10**9+7
for i in range(n):
  l=L[i]+1
  r=0
  for g in edge[i]:
    r+=R[g]+1
  ans=(ans+l*r)%mod
print(ans)
0