結果

問題 No.2638 Initial fare
ユーザー ゼットゼット
提出日時 2024-02-19 21:50:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,427 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 147,228 KB
最終ジャッジ日時 2024-09-29 01:49:47
合計ジャッジ時間 23,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,868 KB
testcase_01 AC 41 ms
55,164 KB
testcase_02 AC 39 ms
54,788 KB
testcase_03 AC 45 ms
56,868 KB
testcase_04 AC 1,148 ms
139,416 KB
testcase_05 AC 1,191 ms
137,504 KB
testcase_06 AC 40 ms
54,972 KB
testcase_07 AC 1,057 ms
142,916 KB
testcase_08 AC 647 ms
144,052 KB
testcase_09 AC 855 ms
146,564 KB
testcase_10 AC 744 ms
147,228 KB
testcase_11 AC 42 ms
54,560 KB
testcase_12 AC 1,042 ms
141,832 KB
testcase_13 AC 769 ms
138,300 KB
testcase_14 AC 898 ms
146,912 KB
testcase_15 AC 921 ms
144,756 KB
testcase_16 AC 46 ms
55,856 KB
testcase_17 AC 1,238 ms
143,512 KB
testcase_18 AC 922 ms
140,848 KB
testcase_19 AC 1,292 ms
142,588 KB
testcase_20 AC 1,326 ms
141,664 KB
testcase_21 AC 1,360 ms
141,120 KB
testcase_22 AC 42 ms
55,220 KB
testcase_23 AC 1,391 ms
139,284 KB
testcase_24 AC 1,427 ms
140,876 KB
testcase_25 AC 42 ms
55,500 KB
testcase_26 AC 1,326 ms
134,308 KB
testcase_27 AC 1,374 ms
137,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
G=[[] for i in range(N)]
for i in range(N-1):
  a,b=map(int,input().split())
  G[a-1].append(b-1)
  G[b-1].append(a-1)
from collections import deque
S=deque()
S.append(0)
dist=[-1]*N
dist[0]=0
root=[-1]*N
while S:
  x=S.pop()
  for y in G[x]:
    if dist[y]>=0:
      continue
    dist[y]=dist[x]+1
    root[y]=x
    S.append(y)
dp=[[0]*4 for i in range(N)]
L=[]
for i in range(N):
  L.append((dist[i],i))
L.sort(reverse=True)
result=0
for i in range(N):
  pos=L[i][1]
  for y in G[pos]:
    if dist[y]<dist[pos]:
      continue
    for j in range(3):
      dp[pos][j+1]+=dp[y][j]
  dp[pos][0]=1
for i in range(N):
  result+=sum(dp[i][1:4])
  M=len(G[i])
  v0=[0]*(len(G[i]))
  v1=[0]*M
  for j in range(M):
    y=G[i][j]
    if dist[y]<dist[i]:
      continue
    v0[j]+=dp[y][0]
    v1[j]+=dp[y][1]
  for j in range(1,M):
    v0[j]+=v0[j-1]
    v1[j]+=v1[j-1]
  for j in range(1,M):
    y=G[i][j]
    if dist[y]<dist[i]:
      continue
    result+=dp[y][0]*(v0[j-1]+v1[j-1])
    result+=dp[y][1]*(v0[j-1])
print(result)
0