結果
問題 | No.439 チワワのなる木 |
ユーザー | nebukuro09 |
提出日時 | 2016-10-29 14:34:02 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 816 bytes |
コンパイル時間 | 1,031 ms |
コンパイル使用メモリ | 76,944 KB |
実行使用メモリ | 173,600 KB |
最終ジャッジ日時 | 2024-11-24 17:56:19 |
合計ジャッジ時間 | 58,553 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
162,996 KB |
testcase_01 | AC | 72 ms
82,128 KB |
testcase_02 | AC | 73 ms
82,496 KB |
testcase_03 | AC | 76 ms
163,656 KB |
testcase_04 | AC | 73 ms
82,636 KB |
testcase_05 | AC | 73 ms
161,188 KB |
testcase_06 | AC | 74 ms
158,060 KB |
testcase_07 | AC | 75 ms
158,368 KB |
testcase_08 | AC | 74 ms
168,368 KB |
testcase_09 | AC | 89 ms
173,600 KB |
testcase_10 | AC | 82 ms
77,320 KB |
testcase_11 | AC | 73 ms
75,420 KB |
testcase_12 | AC | 75 ms
76,220 KB |
testcase_13 | AC | 93 ms
78,136 KB |
testcase_14 | AC | 99 ms
77,864 KB |
testcase_15 | AC | 167 ms
79,504 KB |
testcase_16 | AC | 260 ms
79,504 KB |
testcase_17 | AC | 204 ms
79,628 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 223 ms
89,492 KB |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
ソースコード
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(start, root): cw = [0, 0] #stack = [(r, start) for r in rinsetsu[start]] stack = [(start, root)] while len(stack) > 0: n, prev = stack.pop() cw[0] += S[n] == 'c' cw[1] += S[n] == 'w' for nn in rinsetsu[n]: if nn != prev: stack.append((nn, n)) return cw ans = 0 for root in xrange(N): if S[root] != 'w': continue cw = [dfs(child, root) for child in rinsetsu[root]] for i in xrange(len(rinsetsu[root])): for j in xrange(i+1, len(rinsetsu[root])): ans += cw[i][0]*cw[j][1] + cw[j][0]*cw[i][1] print ans