結果

問題 No.1103 Directed Length Sum
ユーザー qibqib
提出日時 2022-11-18 19:14:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,105 ms / 3,000 ms
コード長 675 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 314,368 KB
最終ジャッジ日時 2024-09-20 00:26:49
合計ジャッジ時間 19,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 1,035 ms
270,228 KB
testcase_03 AC 900 ms
314,368 KB
testcase_04 AC 1,196 ms
151,432 KB
testcase_05 AC 2,105 ms
204,056 KB
testcase_06 AC 736 ms
123,268 KB
testcase_07 AC 179 ms
86,004 KB
testcase_08 AC 249 ms
92,372 KB
testcase_09 AC 135 ms
82,576 KB
testcase_10 AC 336 ms
100,276 KB
testcase_11 AC 1,304 ms
158,144 KB
testcase_12 AC 752 ms
124,220 KB
testcase_13 AC 359 ms
99,188 KB
testcase_14 AC 123 ms
81,356 KB
testcase_15 AC 571 ms
110,932 KB
testcase_16 AC 1,470 ms
168,520 KB
testcase_17 AC 1,571 ms
169,732 KB
testcase_18 AC 349 ms
100,720 KB
testcase_19 AC 1,319 ms
158,584 KB
testcase_20 AC 151 ms
84,328 KB
testcase_21 AC 234 ms
92,708 KB
testcase_22 AC 1,040 ms
144,644 KB
testcase_23 AC 709 ms
116,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n = int(input())
g = [[] for _ in range(n)]
par = [None for _ in range(n)]
for _ in range(n - 1):
  a, b = map(int, input().split())
  a -= 1
  b -= 1
  g[a].append(b)
  par[b] = a

src = None
for v in range(n):
  if par[v] is None:
    src = v
    break

dp = [0 for _ in range(n)]
depth = [None for _ in range(n)]
depth[src] = 0
st = [~ src, src]
while len(st) > 0:
  cur = st.pop()
  if cur >= 0:
    for nxt in g[cur]:
      depth[nxt] = depth[cur] + 1
      st.append(~ nxt)
      st.append(nxt)
  else:
    dp[~ cur] += 1
    if not par[~ cur] is None:
      dp[par[~ cur]] += dp[~ cur]

ans = sum(depth[v] * dp[v] for v in range(n)) % MOD
print(ans)
0