結果

問題 No.439 チワワのなる木
ユーザー convexineqconvexineq
提出日時 2021-02-16 19:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 635 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 99,512 KB
最終ジャッジ日時 2024-09-13 09:39:59
合計ジャッジ時間 4,280 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,008 KB
testcase_01 AC 37 ms
52,556 KB
testcase_02 AC 37 ms
53,356 KB
testcase_03 AC 37 ms
52,000 KB
testcase_04 AC 38 ms
52,260 KB
testcase_05 AC 37 ms
52,000 KB
testcase_06 AC 37 ms
52,452 KB
testcase_07 AC 37 ms
54,064 KB
testcase_08 AC 38 ms
53,604 KB
testcase_09 AC 38 ms
52,988 KB
testcase_10 AC 39 ms
52,616 KB
testcase_11 AC 39 ms
53,876 KB
testcase_12 AC 37 ms
52,988 KB
testcase_13 AC 42 ms
54,012 KB
testcase_14 AC 44 ms
54,812 KB
testcase_15 AC 73 ms
72,392 KB
testcase_16 AC 83 ms
76,892 KB
testcase_17 AC 76 ms
74,684 KB
testcase_18 AC 197 ms
90,904 KB
testcase_19 AC 194 ms
90,996 KB
testcase_20 AC 232 ms
96,364 KB
testcase_21 AC 129 ms
82,056 KB
testcase_22 AC 124 ms
80,900 KB
testcase_23 AC 249 ms
97,328 KB
testcase_24 AC 235 ms
97,168 KB
testcase_25 AC 220 ms
98,224 KB
testcase_26 AC 211 ms
99,512 KB
testcase_27 AC 157 ms
96,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
g = [[] for _ in range(n)]
for _ in range(n-1):
    a,b = map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)

order = [0]
parent = [-1]*n
for v in order:
    for c in g[v]:
        if parent[v] == c: continue
        order.append(c)
        parent[c] = v

ans = 0
C = [0]*n
W = [0]*n
cs = s.count("c")
ws = n-cs
for v in order[::-1]:
    if s[v]=="c":
        C[v] += 1
    else:
        ans += C[v]*(ws-W[v]-1) + W[v]*(cs-C[v])
        W[v] += 1
    p = parent[v]
    if p==-1: break
    if s[p] == "w":
        ans += C[p]*W[v] + W[p]*C[v]
    C[p] += C[v]
    W[p] += W[v]
print(ans)
0