結果
問題 | No.439 チワワのなる木 |
ユーザー | vjudge1 |
提出日時 | 2024-12-22 22:47:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 600 bytes |
コンパイル時間 | 1,714 ms |
コンパイル使用メモリ | 169,884 KB |
実行使用メモリ | 19,968 KB |
最終ジャッジ日時 | 2024-12-22 22:47:27 |
合計ジャッジ時間 | 3,211 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,016 KB |
testcase_01 | AC | 3 ms
6,016 KB |
testcase_02 | AC | 3 ms
5,888 KB |
testcase_03 | AC | 2 ms
5,888 KB |
testcase_04 | AC | 3 ms
6,016 KB |
testcase_05 | AC | 3 ms
5,888 KB |
testcase_06 | AC | 3 ms
5,888 KB |
testcase_07 | AC | 3 ms
5,888 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | 58 ms
18,688 KB |
testcase_25 | AC | 41 ms
12,032 KB |
testcase_26 | WA | - |
testcase_27 | AC | 42 ms
19,968 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; const int N=100010; using ll=long long; char s[N]; vector<int> e[N]; ll c[N],w[N],wc[N],ww[N],r; void dfs(int u,int f){ for(int v:e[u]){ if(v==f) continue; dfs(v,u); c[u]+=c[v],w[u]+=w[v],wc[u]+=wc[v],ww[u]+=ww[v],r-=w[v]*wc[v]+ww[v]*c[v]; } r+=w[u]*wc[u]+ww[u]*c[u]; if(s[u]=='c') c[u]++,r+=ww[u]; else r+=wc[u],wc[u]+=c[u],ww[u]+=w[u],w[u]++; } int main(){ int n; scanf("%d%s",&n,s+1); for(int i=1,u,v;i<n;++i) scanf("%d%d",&u,&v),e[u].push_back(v),e[v].push_back(u); dfs(1,0); printf("%lld\n",r); return 0; }