結果

問題 No.1103 Directed Length Sum
ユーザー takakintakakin
提出日時 2020-07-05 20:54:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 740 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 364,744 KB
最終ジャッジ日時 2024-09-22 21:25:26
合計ジャッジ時間 27,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,016 KB
testcase_01 AC 41 ms
54,144 KB
testcase_02 AC 1,039 ms
364,744 KB
testcase_03 AC 803 ms
323,256 KB
testcase_04 AC 1,773 ms
232,424 KB
testcase_05 TLE -
testcase_06 AC 1,153 ms
182,720 KB
testcase_07 AC 263 ms
101,388 KB
testcase_08 AC 416 ms
114,592 KB
testcase_09 AC 183 ms
90,812 KB
testcase_10 AC 574 ms
127,924 KB
testcase_11 AC 1,868 ms
233,692 KB
testcase_12 AC 1,139 ms
174,420 KB
testcase_13 AC 562 ms
132,308 KB
testcase_14 AC 146 ms
87,072 KB
testcase_15 AC 868 ms
158,080 KB
testcase_16 AC 2,215 ms
260,688 KB
testcase_17 AC 2,353 ms
263,504 KB
testcase_18 AC 562 ms
128,800 KB
testcase_19 AC 1,898 ms
248,140 KB
testcase_20 AC 197 ms
94,872 KB
testcase_21 AC 345 ms
110,484 KB
testcase_22 AC 1,545 ms
203,516 KB
testcase_23 AC 913 ms
152,968 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]
  w=TS[n-1-i]
  for g in edge[v]:
    L[g]+=L[v]+1
  for g in edge_r[w]:
    R[g]+=R[w]+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