結果

問題 No.439 チワワのなる木
ユーザー okadukiokaduki
提出日時 2017-12-09 01:11:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 5,000 ms
コード長 769 bytes
コンパイル時間 1,716 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 189,440 KB
最終ジャッジ日時 2024-11-29 20:29:53
合計ジャッジ時間 5,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 32 ms
51,584 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 32 ms
51,584 KB
testcase_04 AC 32 ms
51,328 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 33 ms
51,968 KB
testcase_08 AC 33 ms
51,968 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 34 ms
52,352 KB
testcase_11 AC 34 ms
51,584 KB
testcase_12 AC 32 ms
51,456 KB
testcase_13 AC 35 ms
52,608 KB
testcase_14 AC 35 ms
52,736 KB
testcase_15 AC 52 ms
67,968 KB
testcase_16 AC 58 ms
71,040 KB
testcase_17 AC 56 ms
70,400 KB
testcase_18 AC 292 ms
96,384 KB
testcase_19 AC 215 ms
94,996 KB
testcase_20 AC 356 ms
101,640 KB
testcase_21 AC 138 ms
84,352 KB
testcase_22 AC 188 ms
85,376 KB
testcase_23 AC 489 ms
117,632 KB
testcase_24 AC 506 ms
176,000 KB
testcase_25 AC 187 ms
102,272 KB
testcase_26 AC 197 ms
103,168 KB
testcase_27 AC 364 ms
189,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1000000)

lines = sys.stdin.read().splitlines()
n = int(lines[0])
s = lines[1]
G = [[] for _ in range(n)]
for m in range(n-1):
    x, y = [int(i) for i in lines[2+m].split()]
    x -= 1
    y -= 1
    G[x].append(y)
    G[y].append(x)

nc = s.count('c')
nw = s.count('w')

dp1 = [[0,0] for _ in range(n)]
def dfs1(u, p):
    dp1[u][0] = 1 if s[u] == 'c' else 0
    dp1[u][1] = 1 if s[u] == 'w' else 0

    res = 0
    for to in G[u]:
        if to == p: continue
        res += dfs1(to, u)
        dp1[u][0] += dp1[to][0]
        dp1[u][1] += dp1[to][1]
        if s[u] == 'w':
            res += dp1[to][0] * (nw - dp1[to][1] - 1)
    if s[u] == 'w':
        res += (nc - dp1[u][0]) * (dp1[u][1] - 1)
    return res

print(dfs1(0,-1))
0