結果

問題 No.1098 LCAs
ユーザー qibqib
提出日時 2023-05-17 16:54:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 149,388 KB
最終ジャッジ日時 2024-12-15 10:54:30
合計ジャッジ時間 9,937 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,016 KB
testcase_01 AC 35 ms
52,332 KB
testcase_02 AC 35 ms
52,376 KB
testcase_03 AC 35 ms
51,880 KB
testcase_04 AC 35 ms
52,888 KB
testcase_05 AC 34 ms
53,000 KB
testcase_06 AC 34 ms
52,704 KB
testcase_07 AC 34 ms
54,192 KB
testcase_08 AC 35 ms
52,496 KB
testcase_09 AC 34 ms
52,484 KB
testcase_10 AC 34 ms
52,196 KB
testcase_11 AC 34 ms
52,888 KB
testcase_12 AC 34 ms
52,504 KB
testcase_13 AC 58 ms
69,572 KB
testcase_14 AC 61 ms
69,408 KB
testcase_15 AC 58 ms
69,228 KB
testcase_16 AC 59 ms
70,184 KB
testcase_17 AC 60 ms
68,908 KB
testcase_18 AC 459 ms
114,488 KB
testcase_19 AC 450 ms
114,484 KB
testcase_20 AC 459 ms
114,504 KB
testcase_21 AC 460 ms
114,464 KB
testcase_22 AC 521 ms
114,352 KB
testcase_23 AC 367 ms
143,500 KB
testcase_24 AC 366 ms
143,280 KB
testcase_25 AC 352 ms
146,068 KB
testcase_26 AC 377 ms
149,308 KB
testcase_27 AC 357 ms
149,388 KB
testcase_28 AC 452 ms
120,812 KB
testcase_29 AC 433 ms
121,396 KB
testcase_30 AC 439 ms
119,644 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)

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

ans = [0 for _ in range(n)]
for v in range(n):
  if not par[v] is None:
    ans[par[v]] -= cnt[v] ** 2
  ans[v] += cnt[v] ** 2

print(*ans, sep='\n')
0