結果

問題 No.439 チワワのなる木
ユーザー okadukiokaduki
提出日時 2017-12-09 01:03:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 725 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-11-29 20:25:21
合計ジャッジ時間 7,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 25 ms
10,624 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 26 ms
10,496 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 33 ms
10,880 KB
testcase_16 AC 36 ms
11,136 KB
testcase_17 AC 37 ms
11,008 KB
testcase_18 AC 431 ms
28,928 KB
testcase_19 AC 410 ms
28,288 KB
testcase_20 AC 646 ms
34,560 KB
testcase_21 AC 183 ms
18,304 KB
testcase_22 AC 166 ms
17,280 KB
testcase_23 AC 678 ms
37,888 KB
testcase_24 AC 719 ms
52,352 KB
testcase_25 AC 586 ms
35,328 KB
testcase_26 AC 576 ms
34,176 KB
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000)

n = int(input())
s = input()
G = [[] for _ in range(n)]
for m in range(n-1):
    x, y = [int(i) for i in input().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