結果

問題 No.1103 Directed Length Sum
ユーザー qibqib
提出日時 2022-11-18 19:10:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,171 ms / 3,000 ms
コード長 680 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 314,360 KB
最終ジャッジ日時 2024-09-20 00:25:20
合計ジャッジ時間 19,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 1,086 ms
270,208 KB
testcase_03 AC 893 ms
314,360 KB
testcase_04 AC 1,100 ms
143,104 KB
testcase_05 AC 2,171 ms
195,968 KB
testcase_06 AC 766 ms
123,136 KB
testcase_07 AC 190 ms
86,016 KB
testcase_08 AC 273 ms
92,288 KB
testcase_09 AC 144 ms
82,432 KB
testcase_10 AC 368 ms
100,608 KB
testcase_11 AC 1,288 ms
152,320 KB
testcase_12 AC 778 ms
123,648 KB
testcase_13 AC 401 ms
99,072 KB
testcase_14 AC 131 ms
81,408 KB
testcase_15 AC 567 ms
110,720 KB
testcase_16 AC 1,457 ms
157,312 KB
testcase_17 AC 1,636 ms
169,728 KB
testcase_18 AC 381 ms
100,480 KB
testcase_19 AC 1,424 ms
158,080 KB
testcase_20 AC 175 ms
84,352 KB
testcase_21 AC 244 ms
89,856 KB
testcase_22 AC 1,104 ms
144,512 KB
testcase_23 AC 620 ms
115,712 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]
ans = 0
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 += depth[~ cur] * dp[~ cur]

ans %= MOD
print(ans)
0