結果

問題 No.1103 Directed Length Sum
ユーザー qibqib
提出日時 2023-04-30 17:21:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,097 ms / 3,000 ms
コード長 680 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 314,716 KB
最終ジャッジ日時 2024-11-19 07:46:27
合計ジャッジ時間 18,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,156 KB
testcase_01 AC 38 ms
53,140 KB
testcase_02 AC 946 ms
270,184 KB
testcase_03 AC 853 ms
314,716 KB
testcase_04 AC 1,122 ms
143,180 KB
testcase_05 AC 2,097 ms
195,872 KB
testcase_06 AC 727 ms
123,420 KB
testcase_07 AC 195 ms
86,016 KB
testcase_08 AC 268 ms
92,300 KB
testcase_09 AC 141 ms
82,316 KB
testcase_10 AC 353 ms
99,884 KB
testcase_11 AC 1,212 ms
152,300 KB
testcase_12 AC 713 ms
123,684 KB
testcase_13 AC 348 ms
99,056 KB
testcase_14 AC 121 ms
81,496 KB
testcase_15 AC 586 ms
110,680 KB
testcase_16 AC 1,384 ms
157,228 KB
testcase_17 AC 1,492 ms
169,948 KB
testcase_18 AC 381 ms
100,076 KB
testcase_19 AC 1,292 ms
158,132 KB
testcase_20 AC 154 ms
84,416 KB
testcase_21 AC 242 ms
89,900 KB
testcase_22 AC 1,046 ms
144,368 KB
testcase_23 AC 616 ms
115,824 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 + dp[~ cur] * depth[~ cur]) % MOD

print(ans)
0