結果
問題 | No.439 チワワのなる木 |
ユーザー | tottoripaper |
提出日時 | 2016-10-29 00:05:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,990 bytes |
コンパイル時間 | 1,740 ms |
コンパイル使用メモリ | 167,408 KB |
実行使用メモリ | 29,568 KB |
最終ジャッジ日時 | 2024-11-24 06:46:38 |
合計ジャッジ時間 | 2,499 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,144 KB |
testcase_01 | AC | 3 ms
6,016 KB |
testcase_02 | AC | 3 ms
6,016 KB |
testcase_03 | AC | 3 ms
5,760 KB |
testcase_04 | AC | 3 ms
6,144 KB |
testcase_05 | AC | 2 ms
6,016 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,144 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 | 66 ms
26,368 KB |
testcase_25 | AC | 36 ms
10,248 KB |
testcase_26 | WA | - |
testcase_27 | AC | 51 ms
29,568 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define fst(t) std::get<0>(t) #define snd(t) std::get<1>(t) #define thd(t) std::get<2>(t) using ll = long long; using P = std::tuple<int,int>; const int dx[8] = {-1, 1, 0, 0, -1, -1, 1, 1}, dy[8] = {0, 0, -1, 1, -1, 1, -1, 1}; int N; string nodes; vector<int> G[100000]; ll rec(int u, int p, int c_cnt, int w_cnt, ll cw_cnt){ ll res = 0ll; if(nodes[u] == 'c'){ res = 1ll * w_cnt * (w_cnt - 1) / 2; }else{ res = cw_cnt; } // printf("at %d, get %lld as bonus\n", u, res); for(auto v : G[u]){ if(v == p){continue;} if(nodes[u] == 'c'){ res += rec(v, u, c_cnt + 1, w_cnt, cw_cnt); }else{ res += rec(v, u, c_cnt, w_cnt + 1, cw_cnt + c_cnt); } } return res; } tuple<ll,ll,ll> rec2(int u, int p){ vector<ll> v1, v2; ll res = 0ll, all_c_cnt = 0, all_w_cnt = 0; for(auto v : G[u]){ if(v == p){continue;} ll child_res, c_cnt, w_cnt; tie(child_res, c_cnt, w_cnt) = rec2(v, u); res += child_res; v1.emplace_back(c_cnt); v2.emplace_back(w_cnt); all_c_cnt += c_cnt; all_w_cnt += w_cnt; } int l = v1.size(); if(nodes[u] == 'w'){ for(int i=0;i<l;++i){ res += (all_c_cnt - v1[i]) * v2[i]; } } for(int i=0;i<l;++i){ res += (all_c_cnt - v1[i]) * v2[i] * (v2[i] - 1) / 2; } if(nodes[u] == 'c'){++all_c_cnt;} else{++all_w_cnt;} return std::make_tuple(res, all_c_cnt, all_w_cnt); } int main(){ //* std::cin.tie(nullptr); std::ios::sync_with_stdio(false); /*/ /*/ std::cin >> N; std::cin >> nodes; for(int i=0;i<N-1;++i){ int a, b; std::cin >> a >> b; --a; --b; G[a].emplace_back(b); G[b].emplace_back(a); } ll res = rec(0, -1, 0, 0, 0) + fst(rec2(0, -1)); printf("%lld\n", res); }