結果
問題 | No.439 チワワのなる木 |
ユーザー | nebukuro09 |
提出日時 | 2016-10-29 14:34:02 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 816 bytes |
コンパイル時間 | 511 ms |
コンパイル使用メモリ | 76,808 KB |
実行使用メモリ | 163,072 KB |
最終ジャッジ日時 | 2024-05-03 15:47:34 |
合計ジャッジ時間 | 9,499 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 76 ms
163,072 KB |
testcase_01 | AC | 76 ms
75,308 KB |
testcase_02 | AC | 75 ms
75,392 KB |
testcase_03 | AC | 77 ms
75,648 KB |
testcase_04 | AC | 77 ms
75,552 KB |
testcase_05 | AC | 76 ms
75,648 KB |
testcase_06 | AC | 76 ms
75,280 KB |
testcase_07 | AC | 75 ms
75,384 KB |
testcase_08 | AC | 76 ms
75,904 KB |
testcase_09 | AC | 96 ms
77,840 KB |
testcase_10 | AC | 84 ms
77,816 KB |
testcase_11 | AC | 74 ms
75,392 KB |
testcase_12 | AC | 78 ms
76,580 KB |
testcase_13 | AC | 96 ms
78,096 KB |
testcase_14 | AC | 113 ms
77,952 KB |
testcase_15 | AC | 175 ms
79,488 KB |
testcase_16 | AC | 269 ms
79,500 KB |
testcase_17 | AC | 214 ms
79,616 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
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