結果

問題 No.439 チワワのなる木
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-04 17:09:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,098 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,828 KB
最終ジャッジ日時 2024-10-04 17:09:41
合計ジャッジ時間 4,818 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 41 ms
52,608 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,224 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 43 ms
55,552 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 303 ms
92,684 KB
testcase_21 AC 155 ms
81,796 KB
testcase_22 AC 156 ms
81,280 KB
testcase_23 WA -
testcase_24 AC 321 ms
103,116 KB
testcase_25 AC 257 ms
98,816 KB
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
c=[int(x=="c") for x in input()]
e=[[] for i in range(n)]
for i in range(n-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[b]
  e[b]+=[a]
v=[0]*n
q1=[0]*n
q2=[0]*n
q=[0]
while len(q)>0:
  s=q[-1]
  if v[s]==0:
    v[s]=1
    for t in e[s]:
      if v[t]==0:
        q+=[t]
  else:
    for t in e[s]:
      if v[t]==0:
        q1[s]+=q1[t]
        q2[s]+=q2[t]
    if c[s]==0:
      q1[s]+=1
      q2[s]+=q1[s]-1
    v[s]=0
    q.pop()
q3=[0]*n
q4=[0]*n
q=[0]
while len(q)>0:
  s=q[-1]
  if v[s]==0:
    v[s]=1
    for t in e[s]:
      if v[t]==0:
        q+=[t]
        if (c[s],c[t])==(0,0):
          q3[t]=q1[s]-q1[t]+q3[s]-1+1
          q4[t]=q2[s]-q2[t]+q4[s]-q1[t]+q3[t]-1
        if (c[s],c[t])==(0,1):
          q3[t]=q1[s]-q1[t]+q3[s]-1
          q4[t]=q2[s]-q2[t]+q4[s]-q1[t]
        if (c[s],c[t])==(1,0):
          q3[t]=q1[s]-q1[t]+q3[s]+1
          q4[t]=q2[s]-q2[t]+q4[s]+q3[t]-1
        if (c[s],c[t])==(1,1):
          q3[t]=q1[s]-q1[t]+q3[s]
          q4[t]=q2[s]-q2[t]+q4[s]
  else:
    v[s]=0
    q.pop()
print(sum((q2[i]+q4[i])*c[i] for i in range(n)))
0