結果

問題 No.439 チワワのなる木
ユーザー vjudge1vjudge1
提出日時 2024-12-22 17:46:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 705 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 49,280 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-12-22 17:46:51
合計ジャッジ時間 2,097 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,376 KB
testcase_01 AC 4 ms
5,504 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,504 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,504 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 3 ms
5,504 KB
testcase_09 AC 4 ms
5,504 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 3 ms
5,504 KB
testcase_12 AC 4 ms
5,504 KB
testcase_13 AC 4 ms
5,504 KB
testcase_14 AC 4 ms
5,504 KB
testcase_15 AC 4 ms
5,504 KB
testcase_16 AC 4 ms
5,504 KB
testcase_17 AC 4 ms
5,504 KB
testcase_18 AC 39 ms
8,320 KB
testcase_19 AC 35 ms
8,192 KB
testcase_20 AC 50 ms
9,216 KB
testcase_21 AC 15 ms
6,656 KB
testcase_22 AC 14 ms
6,400 KB
testcase_23 AC 55 ms
9,856 KB
testcase_24 AC 84 ms
14,592 KB
testcase_25 AC 45 ms
9,600 KB
testcase_26 AC 44 ms
9,752 KB
testcase_27 AC 41 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<vector>
using namespace std;
const int N=1e5+10; vector<int>g[N]; int sumc[N],sumw[N],totc,totw; long long ans; char s[N];
void dfs(int u,int fa) {
  s[u]=='c'?sumc[u]++:sumw[u]++;
  for(auto v:g[u]) {
  	if(v==fa) continue;
  	dfs(v,u),sumc[u]+=sumc[v],sumw[u]+=sumw[v];
  	if(s[u]=='w') ans+=1ll*sumc[v]*(totw-sumw[v]-1);
  }
  if(fa&&s[u]=='w') ans+=1ll*(totc-sumc[u])*(sumw[u]-1); 
}
int main() {
  //freopen("cww.in","r",stdin);
  //freopen("cww.out","w",stdout);
  int n; scanf("%d %s",&n,s+1);
  for(int i=1;i<=n;i++) s[i]=='c'?totc++:totw++;
  for(int i=1,u,v;i<n;i++) scanf("%d %d",&u,&v),g[u].push_back(v),g[v].push_back(u);
  dfs(1,0),printf("%lld",ans);
  return 0;
}
0