結果

問題 No.439 チワワのなる木
ユーザー pekempeypekempey
提出日時 2016-10-28 23:19:38
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 1,374 ms
コンパイル使用メモリ 160,864 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-05-03 08:06:11
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,016 KB
testcase_01 AC 3 ms
6,016 KB
testcase_02 AC 4 ms
5,888 KB
testcase_03 AC 4 ms
5,888 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 3 ms
5,888 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 3 ms
6,016 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 76 ms
18,688 KB
testcase_25 AC 50 ms
10,624 KB
testcase_26 WA -
testcase_27 AC 47 ms
20,096 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:45:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   45 |                 scanf("%d %d", &u, &v);
      |                 ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int N = 1e5;

int n;
string s;

vector<int> g[N];
long long sub_c[N];
long long sub_w[N];
long long sub_ww[N];
long long sub_wc[N];
long long ans;

void dfs(int u, int p) {
	for (int v : g[u]) if (v != p) {
		dfs(v, u);
		sub_c[u] += sub_c[v];
		sub_w[u] += sub_w[v];
		sub_ww[u] += sub_ww[v];
		sub_wc[u] += sub_wc[v];
		if (s[u] == 'c') {
			ans += sub_ww[v];
		} else {
			sub_wc[u] += sub_c[v];
			sub_ww[u] += sub_w[v];
			ans -= sub_c[v] * sub_w[v];
			ans += sub_wc[v];
		}
	}
	if (s[u] == 'w') ans += sub_c[u] * sub_w[u];

	if (s[u] == 'c') {
		sub_c[u]++;
	} else {
		sub_w[u]++;
	}
}

int main() {
	cin >> n >> s;
	for (int i = 0; i < n - 1; i++) {
		int u, v;
		scanf("%d %d", &u, &v);
		u--; v--;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	dfs(0, -1);
	cout << ans << endl;
}
0