結果

問題 No.1103 Directed Length Sum
ユーザー marroncastlemarroncastle
提出日時 2020-09-13 05:02:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,421 ms / 3,000 ms
コード長 710 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 260,984 KB
最終ジャッジ日時 2024-06-10 22:45:33
合計ジャッジ時間 14,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 790 ms
260,984 KB
testcase_03 AC 543 ms
258,816 KB
testcase_04 AC 845 ms
128,888 KB
testcase_05 AC 1,421 ms
165,376 KB
testcase_06 AC 491 ms
110,720 KB
testcase_07 AC 142 ms
84,480 KB
testcase_08 AC 194 ms
89,344 KB
testcase_09 AC 108 ms
81,280 KB
testcase_10 AC 254 ms
93,440 KB
testcase_11 AC 849 ms
133,760 KB
testcase_12 AC 480 ms
111,232 KB
testcase_13 AC 246 ms
93,824 KB
testcase_14 AC 105 ms
80,000 KB
testcase_15 AC 370 ms
103,296 KB
testcase_16 AC 971 ms
140,928 KB
testcase_17 AC 1,034 ms
143,872 KB
testcase_18 AC 260 ms
93,824 KB
testcase_19 AC 869 ms
135,296 KB
testcase_20 AC 121 ms
82,432 KB
testcase_21 AC 175 ms
87,552 KB
testcase_22 AC 708 ms
124,544 KB
testcase_23 AC 421 ms
105,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)
input=sys.stdin.readline

def dfs(start):
  global ans,mod
  stack = [start]
  depth = [-1]*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[u]*(depth[u]+1)//2
        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