結果
問題 | No.439 チワワのなる木 |
ユーザー | h_noson |
提出日時 | 2017-02-03 22:37:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 749 bytes |
コンパイル時間 | 198 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 28,928 KB |
最終ジャッジ日時 | 2024-12-24 04:26:11 |
合計ジャッジ時間 | 6,170 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
10,880 KB |
testcase_01 | AC | 33 ms
10,752 KB |
testcase_02 | AC | 34 ms
10,752 KB |
testcase_03 | AC | 34 ms
10,752 KB |
testcase_04 | AC | 32 ms
10,752 KB |
testcase_05 | AC | 34 ms
10,752 KB |
testcase_06 | AC | 32 ms
10,752 KB |
testcase_07 | AC | 33 ms
10,880 KB |
testcase_08 | AC | 30 ms
10,880 KB |
testcase_09 | AC | 28 ms
10,752 KB |
testcase_10 | AC | 29 ms
10,880 KB |
testcase_11 | AC | 31 ms
10,880 KB |
testcase_12 | AC | 30 ms
10,752 KB |
testcase_13 | AC | 30 ms
10,752 KB |
testcase_14 | AC | 31 ms
10,752 KB |
testcase_15 | AC | 33 ms
11,008 KB |
testcase_16 | AC | 37 ms
11,008 KB |
testcase_17 | AC | 33 ms
11,008 KB |
testcase_18 | AC | 401 ms
23,552 KB |
testcase_19 | AC | 362 ms
23,040 KB |
testcase_20 | AC | 548 ms
27,392 KB |
testcase_21 | AC | 163 ms
16,256 KB |
testcase_22 | AC | 143 ms
15,488 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 532 ms
27,776 KB |
testcase_26 | AC | 503 ms
26,368 KB |
testcase_27 | RE | - |
ソースコード
def dfs(u):used[u] = Truec = w = cw = ww = cww = 0for v in e[u]:if not used[v]:res = dfs(v)cww += res[4] + c * res[3] + w * res[2] + cw * res[1] + ww * res[0]if s[u] == 'w':cww += c * res[1] + w * res[0]c += res[0]w += res[1]cw += res[2]ww += res[3]if s[u] == 'c':c += 1cww += wwelse:cww += cwcw += cww += ww += 1return [c,w,cw,ww,cww]n = int(input())s = input()e = [[] for i in range(n)]used = [False] * nfor i in range(n-1):a, b = map(int,input().split(' '))a -= 1b -= 1e[a].append(b)e[b].append(a)print(dfs(0)[4])