結果

問題 No.1103 Directed Length Sum
ユーザー marroncastlemarroncastle
提出日時 2020-09-13 05:16:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,608 ms / 3,000 ms
コード長 745 bytes
コンパイル時間 655 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 261,332 KB
最終ジャッジ日時 2024-06-10 23:04:45
合計ジャッジ時間 15,845 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,132 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 756 ms
261,332 KB
testcase_03 AC 571 ms
259,888 KB
testcase_04 AC 882 ms
133,676 KB
testcase_05 AC 1,608 ms
172,880 KB
testcase_06 AC 574 ms
113,536 KB
testcase_07 AC 157 ms
85,376 KB
testcase_08 AC 218 ms
89,856 KB
testcase_09 AC 125 ms
81,664 KB
testcase_10 AC 294 ms
94,592 KB
testcase_11 AC 1,115 ms
138,496 KB
testcase_12 AC 594 ms
113,664 KB
testcase_13 AC 300 ms
95,360 KB
testcase_14 AC 116 ms
80,512 KB
testcase_15 AC 446 ms
105,344 KB
testcase_16 AC 1,202 ms
146,560 KB
testcase_17 AC 1,162 ms
148,992 KB
testcase_18 AC 307 ms
94,720 KB
testcase_19 AC 1,012 ms
139,904 KB
testcase_20 AC 142 ms
83,072 KB
testcase_21 AC 212 ms
88,448 KB
testcase_22 AC 834 ms
128,512 KB
testcase_23 AC 496 ms
107,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

def dfs(start):
  global ans,mod
  stack = [start]
  depth = [-1]*N
  child_num = [0]*N
  depth[start] = 0
  while stack:
    v = stack[-1]
    marker = 0
    for u in edge[v]:
      if depth[u]==-1: #前半
        marker = 1
        depth[u]=depth[v]+1
        stack.append(u)
      else: #後半
        ans += (depth[v]+1)*(child_num[u]+1)
        child_num[v] += child_num[u]+1
        ans %= mod
    if marker==0: #後半だったら
      stack.pop()
  return

N = int(input())
mod = 10**9+7
edge = [[] for _ in range(N)]
roots = [True]*N
for i in range(N-1):
  a,b = list(map(int, input().split()))
  roots[b-1] = False
  edge[a-1].append(b-1)

root = roots.index(True)
ans = 0
dfs(root)
print(ans)

0