結果
問題 | No.1002 Twotone |
ユーザー | betrue12 |
提出日時 | 2020-02-28 22:34:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,132 bytes |
コンパイル時間 | 2,914 ms |
コンパイル使用メモリ | 221,280 KB |
実行使用メモリ | 25,600 KB |
最終ジャッジ日時 | 2024-10-13 18:24:19 |
合計ジャッジ時間 | 16,587 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
8,192 KB |
testcase_01 | AC | 5 ms
8,192 KB |
testcase_02 | AC | 5 ms
8,192 KB |
testcase_03 | AC | 336 ms
15,616 KB |
testcase_04 | AC | 456 ms
17,280 KB |
testcase_05 | AC | 456 ms
17,920 KB |
testcase_06 | AC | 5 ms
8,192 KB |
testcase_07 | AC | 265 ms
13,696 KB |
testcase_08 | AC | 480 ms
17,152 KB |
testcase_09 | AC | 483 ms
17,280 KB |
testcase_10 | AC | 5 ms
8,192 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 5 ms
8,192 KB |
testcase_19 | AC | 650 ms
19,712 KB |
testcase_20 | AC | 799 ms
24,320 KB |
testcase_21 | AC | 801 ms
23,872 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 4 ms
8,320 KB |
testcase_27 | AC | 145 ms
15,020 KB |
testcase_28 | AC | 234 ms
17,704 KB |
testcase_29 | AC | 232 ms
17,836 KB |
testcase_30 | AC | 5 ms
8,192 KB |
testcase_31 | AC | 227 ms
17,448 KB |
testcase_32 | AC | 244 ms
17,184 KB |
testcase_33 | AC | 220 ms
17,260 KB |
testcase_34 | AC | 450 ms
25,600 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<pair<int, int>> edges[200000]; bitset<200000> dead; struct Centroid{ vector<int> centroid; int sz[200000]; int all_sz; int get_size(int i, int prev){ int sz = 1; for(auto& e : edges[i]){ int j = e.first; if(j == prev || dead[j]) continue; sz += get_size(j, i); } return sz; } void dfs(int i, int prev){ sz[i] = 1; bool is_centroid = true; for(auto& e : edges[i]){ int j = e.first; if(j == prev || dead[j]) continue; dfs(j, i); sz[i] += sz[j]; if(sz[j] > all_sz/2) is_centroid = false; } if(all_sz - sz[i] > all_sz/2) is_centroid = false; if(is_centroid) centroid.push_back(i); } int calculate(int s){ centroid.clear(); all_sz = get_size(s, -1); dfs(s, -1); assert(centroid.size() > 0); return centroid[0]; } }; int64_t ans = 0; Centroid cent; int dfs1(int i, int p, int c){ int res = 1; for(auto& e : edges[i]){ int j = e.first, col = e.second; if(j == p || dead[j]) continue; if(c == col) res += dfs1(j, i, c); } return res; } void dfs2(int i, int p, int c1, int c2, map<pair<int, int>, int>& mp){ if(c2 != -1) mp[minmax(c1, c2)]++; for(auto& e : edges[i]){ int j = e.first, col = e.second; if(j == p || dead[j]) continue; if(c2 != -1 && col != c1 && col != c2) continue; if(c1 == col){ dfs2(j, i, c1, c2, mp); }else{ dfs2(j, i, c1, col, mp); } } } int single_V[200000], single_C[200000]; void solve(int s){ int c = cent.calculate(s); int64_t single_sum = 0; for(auto& e : edges[c]){ int j = e.first, col = e.second; if(dead[j]) continue; int res = dfs1(j, c, col); single_V[j] = res; single_C[col] += res; single_sum += res; ans += res * (single_sum - single_C[col]); } map<pair<int, int>, int> mp; for(auto& e : edges[c]){ int j = e.first, col = e.second; if(dead[j]) continue; single_C[col] -= single_V[j]; map<pair<int, int>, int> mp2; dfs2(j, c, col, -1, mp2); for(auto& pp : mp2){ auto& p = pp.first; int64_t num = 1 + single_C[p.first] + single_C[p.second]; if(mp.count(p)) num += mp[p]; ans += pp.second * num; } for(auto& pp : mp) mp[pp.first] += pp.second; single_C[col] += single_V[j]; } for(auto& e : edges[c]){ int j = e.first, col = e.second; single_V[j] = single_C[col] = 0; } dead[c] = true; for(auto& e : edges[c]) if(!dead[e.first]) solve(e.first); } int main(){ int N, K; cin >> N >> K; for(int i=0; i<N-1; i++){ int a, b, c; cin >> a >> b >> c; a--; b--; c--; edges[a].emplace_back(b, c); edges[b].emplace_back(a, c); } solve(0); cout << ans << endl; return 0; }