結果

問題 No.439 チワワのなる木
ユーザー nebukuro09nebukuro09
提出日時 2016-10-29 13:30:38
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 632 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 151,052 KB
最終ジャッジ日時 2024-05-03 15:45:22
合計ジャッジ時間 13,766 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
75,136 KB
testcase_01 AC 77 ms
75,520 KB
testcase_02 AC 75 ms
75,648 KB
testcase_03 AC 76 ms
75,392 KB
testcase_04 AC 77 ms
75,392 KB
testcase_05 AC 82 ms
75,392 KB
testcase_06 AC 80 ms
75,648 KB
testcase_07 AC 77 ms
75,264 KB
testcase_08 AC 112 ms
77,696 KB
testcase_09 AC 155 ms
79,616 KB
testcase_10 AC 211 ms
81,160 KB
testcase_11 AC 77 ms
75,776 KB
testcase_12 AC 90 ms
77,824 KB
testcase_13 AC 305 ms
81,212 KB
testcase_14 AC 573 ms
84,868 KB
testcase_15 AC 693 ms
85,212 KB
testcase_16 AC 1,656 ms
100,428 KB
testcase_17 AC 1,089 ms
93,620 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
S = raw_input()
rinsetsu = [[] for i in xrange(N)]
for _ in xrange(N-1):
    a, b = map(int, raw_input().split())
    rinsetsu[a-1].append(b-1)
    rinsetsu[b-1].append(a-1)

def dfs(char, n, parent):
    return sum(dfs(char, c, n) for c in rinsetsu[n] if c != parent) + (S[n]==char)

ans = 0
for root in xrange(N):
    if S[root] != 'w':
        continue
    c = [dfs('c', child, root) for child in rinsetsu[root]]
    w = [dfs('w', child, root) for child in rinsetsu[root]]
    for i in xrange(len(rinsetsu[root])):
        for j in xrange(i+1, len(rinsetsu[root])):
            ans += c[i]*w[j] + c[j]*w[i]
print ans
0