結果

問題 No.2638 Initial fare
ユーザー timitimi
提出日時 2024-02-19 21:51:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 581 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 143,932 KB
最終ジャッジ日時 2024-09-29 01:50:05
合計ジャッジ時間 10,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,780 KB
testcase_01 AC 39 ms
54,228 KB
testcase_02 AC 40 ms
54,256 KB
testcase_03 AC 41 ms
55,176 KB
testcase_04 AC 516 ms
113,504 KB
testcase_05 AC 581 ms
111,788 KB
testcase_06 AC 41 ms
54,376 KB
testcase_07 AC 529 ms
120,528 KB
testcase_08 AC 360 ms
123,420 KB
testcase_09 AC 405 ms
130,720 KB
testcase_10 AC 386 ms
130,300 KB
testcase_11 AC 41 ms
54,660 KB
testcase_12 AC 511 ms
118,664 KB
testcase_13 AC 351 ms
117,800 KB
testcase_14 AC 426 ms
122,980 KB
testcase_15 AC 355 ms
122,664 KB
testcase_16 AC 43 ms
54,628 KB
testcase_17 AC 385 ms
113,464 KB
testcase_18 AC 351 ms
117,312 KB
testcase_19 AC 444 ms
115,084 KB
testcase_20 AC 402 ms
113,316 KB
testcase_21 AC 435 ms
116,584 KB
testcase_22 AC 41 ms
55,568 KB
testcase_23 AC 489 ms
138,500 KB
testcase_24 AC 518 ms
137,216 KB
testcase_25 AC 41 ms
54,468 KB
testcase_26 AC 545 ms
134,748 KB
testcase_27 AC 544 ms
143,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
D=[[] for i in range(N)]
for i in range(N-1):
  x,y=map(int, input().split())
  x-=1;y-=1
  D[x].append(y)
  D[y].append(x)

ans=N-1
from collections import deque
d=deque()
V=[-1]*N 
V[0]=0
d.append(0)
G=[[] for i in range(N)]
P=[-1]*N
while d:
  now=d.popleft()
  for nex in D[now]:
    if V[nex]==-1:
      G[now].append(nex) 
      V[nex]=V[now]+1 
      P[nex]=now
      d.append(nex)
DD={}
for v in V:
  if v not in DD:
    DD[v]=0
  DD[v]+=1
for i in range(N):
  g=len(G[i])
  if i!=0:
    ans+=g
  ans+=g*(g-1)//2
  if V[i]>=2:
    c=P[P[i]]
    ans+=len(G[c])-1
  if V[i]>=3:
    ans+=1
print(ans)
    

0