結果

問題 No.439 チワワのなる木
ユーザー nebukuro09nebukuro09
提出日時 2016-10-29 13:30:38
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 632 bytes
コンパイル時間 1,948 ms
コンパイル使用メモリ 76,416 KB
実行使用メモリ 220,868 KB
最終ジャッジ日時 2024-11-24 17:49:27
合計ジャッジ時間 52,538 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
218,876 KB
testcase_01 AC 76 ms
80,768 KB
testcase_02 AC 78 ms
201,052 KB
testcase_03 AC 77 ms
220,868 KB
testcase_04 AC 76 ms
82,744 KB
testcase_05 AC 78 ms
175,664 KB
testcase_06 AC 78 ms
170,128 KB
testcase_07 AC 78 ms
75,648 KB
testcase_08 AC 104 ms
77,696 KB
testcase_09 AC 167 ms
79,360 KB
testcase_10 AC 230 ms
81,164 KB
testcase_11 AC 76 ms
75,136 KB
testcase_12 AC 94 ms
78,080 KB
testcase_13 AC 333 ms
80,896 KB
testcase_14 AC 612 ms
84,868 KB
testcase_15 AC 772 ms
85,212 KB
testcase_16 AC 2,062 ms
100,692 KB
testcase_17 AC 1,378 ms
93,364 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 RE -
testcase_24 AC 249 ms
89,856 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

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