結果

問題 No.2427 Tree Distance Two
ユーザー timitimi
提出日時 2023-08-18 21:39:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 857 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 184,240 KB
最終ジャッジ日時 2024-11-28 06:10:26
合計ジャッジ時間 14,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 47 ms
53,376 KB
testcase_03 AC 842 ms
161,280 KB
testcase_04 AC 45 ms
53,376 KB
testcase_05 AC 857 ms
161,024 KB
testcase_06 AC 40 ms
53,888 KB
testcase_07 AC 533 ms
184,240 KB
testcase_08 AC 649 ms
170,112 KB
testcase_09 AC 591 ms
169,472 KB
testcase_10 AC 676 ms
169,984 KB
testcase_11 AC 630 ms
166,016 KB
testcase_12 AC 690 ms
163,544 KB
testcase_13 AC 763 ms
164,988 KB
testcase_14 AC 369 ms
167,552 KB
testcase_15 AC 40 ms
53,504 KB
testcase_16 AC 41 ms
54,016 KB
testcase_17 AC 40 ms
53,376 KB
testcase_18 AC 42 ms
53,760 KB
testcase_19 AC 43 ms
53,760 KB
testcase_20 AC 116 ms
78,208 KB
testcase_21 AC 131 ms
79,616 KB
testcase_22 AC 110 ms
76,800 KB
testcase_23 AC 97 ms
76,800 KB
testcase_24 AC 114 ms
77,696 KB
testcase_25 AC 231 ms
97,280 KB
testcase_26 AC 497 ms
128,512 KB
testcase_27 AC 408 ms
113,408 KB
testcase_28 AC 784 ms
154,240 KB
testcase_29 AC 718 ms
144,640 KB
testcase_30 AC 527 ms
124,928 KB
testcase_31 AC 351 ms
109,184 KB
testcase_32 AC 523 ms
126,592 KB
testcase_33 AC 426 ms
120,064 KB
testcase_34 AC 186 ms
88,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

##N,K=map(int, input().split())
#A=list(map(int, input().split()))
N=int(input())
D=[[]for _ in range(N)]
C=[[]for _ in range(N)]
for i in range(N-1):
  u,v=map(int, input().split())
  u-=1;v-=1
  D[u].append(v);D[v].append(u)
from collections import deque
d=deque()
d.append(0)
E=[-1]*N;P=[-1]*N
E[0]=0 
while d:
  now=d.popleft()
  for nex in D[now]:
    if E[nex]==-1:
      d.append(nex)
      E[nex]=E[now]+1 
      P[nex]=now
      C[now].append(nex)
CC=[]
for i in range(N):
  CC.append(len(C[i]))
  
for i in range(N):
  ans=0
  if E[i]>1:
    ans+=1 
  if E[i]>0:
    p=P[i]
    ans+=len(C[p])-1 
  CD=C[i]
  for c in CD:
    ans+=CC[c]
  print(ans)
0