結果

問題 No.1098 LCAs
ユーザー marroncastlemarroncastle
提出日時 2020-09-13 05:24:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,837 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 465,404 KB
最終ジャッジ日時 2024-06-10 23:12:34
合計ジャッジ時間 10,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 32 ms
52,096 KB
testcase_07 AC 33 ms
52,480 KB
testcase_08 AC 32 ms
52,096 KB
testcase_09 AC 33 ms
51,968 KB
testcase_10 AC 33 ms
51,968 KB
testcase_11 AC 32 ms
51,968 KB
testcase_12 AC 32 ms
52,096 KB
testcase_13 AC 46 ms
64,256 KB
testcase_14 AC 45 ms
64,128 KB
testcase_15 AC 46 ms
64,000 KB
testcase_16 AC 41 ms
61,696 KB
testcase_17 AC 46 ms
64,512 KB
testcase_18 AC 386 ms
109,740 KB
testcase_19 AC 360 ms
109,568 KB
testcase_20 AC 376 ms
109,416 KB
testcase_21 AC 367 ms
109,568 KB
testcase_22 AC 364 ms
109,548 KB
testcase_23 AC 286 ms
111,360 KB
testcase_24 AC 281 ms
111,484 KB
testcase_25 AC 266 ms
112,512 KB
testcase_26 AC 268 ms
112,640 KB
testcase_27 AC 258 ms
112,256 KB
testcase_28 AC 1,027 ms
313,728 KB
testcase_29 AC 1,048 ms
313,216 KB
testcase_30 AC 1,837 ms
465,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
input = sys.stdin.readline

def dfs(ans,edge,visited,v):
  cnt = 1
  for w in edge[v]:
    if visited[w]==False:
      visited[w]=True
      a = dfs(ans,edge,visited,w)
      ans[v] -= a*a
      cnt += a
  ans[v] += cnt**2
  return cnt

def solve():
  N = int(input())
  edge = [[] for _ in range(N)]
  visited = [False]*N
  for _ in range(N-1):
    a,b = map(int, input().split())
    edge[a-1].append(b-1)
    edge[b-1].append(a-1)
  ans = [0]*N
  visited[0] = True
  dfs(ans,edge,visited,0)
  return ans
print(*solve(),sep='\n')
0