結果

問題 No.1103 Directed Length Sum
ユーザー qibqib
提出日時 2022-11-18 19:08:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,130 ms / 3,000 ms
コード長 682 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 314,656 KB
最終ジャッジ日時 2024-09-20 00:23:59
合計ジャッジ時間 20,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,448 KB
testcase_01 AC 38 ms
52,880 KB
testcase_02 AC 990 ms
270,404 KB
testcase_03 AC 901 ms
314,656 KB
testcase_04 AC 1,162 ms
143,396 KB
testcase_05 AC 2,130 ms
196,060 KB
testcase_06 AC 731 ms
123,400 KB
testcase_07 AC 177 ms
86,036 KB
testcase_08 AC 255 ms
92,508 KB
testcase_09 AC 140 ms
82,436 KB
testcase_10 AC 374 ms
100,060 KB
testcase_11 AC 1,254 ms
152,360 KB
testcase_12 AC 733 ms
123,600 KB
testcase_13 AC 356 ms
98,932 KB
testcase_14 AC 121 ms
81,344 KB
testcase_15 AC 548 ms
110,548 KB
testcase_16 AC 1,423 ms
157,376 KB
testcase_17 AC 1,548 ms
169,712 KB
testcase_18 AC 377 ms
100,512 KB
testcase_19 AC 1,335 ms
158,280 KB
testcase_20 AC 160 ms
84,428 KB
testcase_21 AC 248 ms
90,252 KB
testcase_22 AC 1,070 ms
144,228 KB
testcase_23 AC 635 ms
115,624 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 = (ans + depth[~ cur] * dp[~ cur]) % MOD

print(ans)
0