結果

問題 No.1418 Sum of Sum of Subtree Size
ユーザー qibqib
提出日時 2022-12-13 00:03:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 103,500 KB
最終ジャッジ日時 2024-11-06 21:37:23
合計ジャッジ時間 8,694 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 290 ms
89,216 KB
testcase_04 AC 289 ms
89,728 KB
testcase_05 AC 291 ms
89,600 KB
testcase_06 AC 288 ms
89,344 KB
testcase_07 AC 288 ms
89,216 KB
testcase_08 AC 208 ms
85,376 KB
testcase_09 AC 141 ms
80,768 KB
testcase_10 AC 146 ms
81,408 KB
testcase_11 AC 123 ms
78,336 KB
testcase_12 AC 179 ms
82,560 KB
testcase_13 AC 207 ms
84,608 KB
testcase_14 AC 214 ms
85,248 KB
testcase_15 AC 177 ms
82,176 KB
testcase_16 AC 103 ms
77,380 KB
testcase_17 AC 111 ms
78,020 KB
testcase_18 AC 265 ms
88,576 KB
testcase_19 AC 114 ms
77,952 KB
testcase_20 AC 104 ms
77,064 KB
testcase_21 AC 166 ms
82,048 KB
testcase_22 AC 154 ms
81,792 KB
testcase_23 AC 96 ms
77,184 KB
testcase_24 AC 96 ms
77,312 KB
testcase_25 AC 98 ms
77,056 KB
testcase_26 AC 96 ms
77,184 KB
testcase_27 AC 56 ms
62,592 KB
testcase_28 AC 71 ms
69,632 KB
testcase_29 AC 101 ms
77,568 KB
testcase_30 AC 103 ms
77,184 KB
testcase_31 AC 93 ms
77,056 KB
testcase_32 AC 105 ms
77,024 KB
testcase_33 AC 115 ms
79,104 KB
testcase_34 AC 254 ms
95,744 KB
testcase_35 AC 151 ms
83,968 KB
testcase_36 AC 96 ms
78,720 KB
testcase_37 AC 200 ms
103,500 KB
testcase_38 AC 196 ms
102,196 KB
testcase_39 AC 39 ms
52,608 KB
testcase_40 AC 39 ms
52,224 KB
testcase_41 AC 39 ms
51,840 KB
testcase_42 AC 40 ms
51,712 KB
testcase_43 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
g = [[] for _ in range(n)]
for _ in range(n - 1):
  u, v = map(int, input().split())
  u -= 1
  v -= 1
  g[u].append(v)
  g[v].append(u)

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

ans = 0
for y in range(n):
  ans += n
  for u in g[y]:
    if u == par[y]:
      ans += dp[y] * (n - dp[y])
    else:
      ans += dp[u] * (n - dp[u])

print(ans)
0