結果

問題 No.439 チワワのなる木
ユーザー convexineqconvexineq
提出日時 2021-02-16 07:08:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 5,000 ms
コード長 2,150 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 120,076 KB
最終ジャッジ日時 2024-07-26 12:01:54
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,120 KB
testcase_01 AC 40 ms
52,864 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 40 ms
52,736 KB
testcase_07 AC 40 ms
52,864 KB
testcase_08 AC 40 ms
52,992 KB
testcase_09 AC 43 ms
53,120 KB
testcase_10 AC 43 ms
53,376 KB
testcase_11 AC 39 ms
52,992 KB
testcase_12 AC 40 ms
52,608 KB
testcase_13 AC 48 ms
59,648 KB
testcase_14 AC 51 ms
61,440 KB
testcase_15 AC 102 ms
77,576 KB
testcase_16 AC 121 ms
77,956 KB
testcase_17 AC 110 ms
77,452 KB
testcase_18 AC 398 ms
103,068 KB
testcase_19 AC 393 ms
100,480 KB
testcase_20 AC 509 ms
114,980 KB
testcase_21 AC 220 ms
90,216 KB
testcase_22 AC 200 ms
86,016 KB
testcase_23 AC 532 ms
115,132 KB
testcase_24 AC 519 ms
117,320 KB
testcase_25 AC 420 ms
112,168 KB
testcase_26 AC 471 ms
120,076 KB
testcase_27 AC 274 ms
118,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def rerooting(g,e_M):
    """
    以下を書き換える
    """
    def merge(x,y): #値 x に y をマージ
        return (x[0]+y[0], x[1]+y[1], x[2]+y[2]+x[0]*y[1]+x[1]*y[0])
    def h1(x,v): # x = dp[v][p] を親方向にマージする際の補正
        return (x[0]+1,x[1],0) if s[v]=="c" else (x[0],x[1]+1,0)
    def h2(x,v): # x = dp[p][v] を子方向にマージする際の補正
        return (x[0]+1,x[1],0) if s[parent[v]]=="c" else (x[0],x[1]+1,0)
    

    """
    dfs_bottom_up: 木DP
    dfs_top_down: rerooting
    """
    def get_order(g):
        n = len(g)
        order = []
        st = [0]
        parent = [-1]*n
        while st:
            v = st.pop()
            order.append(v)
            for c in g[v]:
                if c != parent[v]:
                    st.append(c)
                    parent[c] = v
        return order, parent

    def dfs_bottom_up(BU,hBU,parent,order):
        for i in order[::-1]:
            hBU[i] = h1(BU[i], i)
            if i: BU[parent[i]] = merge(BU[parent[i]], hBU[i])
    
    def dfs_top_down(hBU,hTD,g,parent,order):
        for v in order:
            acc_l = e_M
            for c in g[v]:
                if c==parent[v]:
                    acc_l = merge(acc_l,hTD[v])
                else:
                    hTD[c] = acc_l
                    acc_l = merge(acc_l,hBU[c])
            acc_r = e_M
            for c in g[v][::-1]:
                if c==parent[v]:
                    acc_r = merge(hTD[v],acc_r)
                else:
                    hTD[c] = h2(merge(hTD[c],acc_r),c)
                    acc_r = merge(acc_r,hBU[c])
    
    n = len(g)
    order, parent = get_order(g)
    BU = [e_M]*n
    hBU = [e_M]*n
    hTD = [e_M]*n
    dfs_bottom_up(BU,hBU,parent,order)
    dfs_top_down(hBU,hTD,g,parent,order)

    for i in range(n):
        BU[i] = merge(BU[i],hTD[i])
    return BU

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)

BU = rerooting(g,(0,0,0))
ans = 0
for i in range(n):
    if s[i] == "w":
        ans += BU[i][2]
print(ans)
0