結果
問題 | No.1002 Twotone |
ユーザー | betrue12 |
提出日時 | 2020-02-28 22:31:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,079 bytes |
コンパイル時間 | 2,745 ms |
コンパイル使用メモリ | 221,564 KB |
実行使用メモリ | 26,068 KB |
最終ジャッジ日時 | 2024-10-13 18:20:01 |
合計ジャッジ時間 | 14,213 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,648 KB |
testcase_01 | AC | 4 ms
9,412 KB |
testcase_02 | AC | 5 ms
8,900 KB |
testcase_03 | AC | 329 ms
15,936 KB |
testcase_04 | AC | 361 ms
17,344 KB |
testcase_05 | AC | 369 ms
17,964 KB |
testcase_06 | AC | 4 ms
9,028 KB |
testcase_07 | AC | 229 ms
14,784 KB |
testcase_08 | AC | 412 ms
17,476 KB |
testcase_09 | AC | 432 ms
17,220 KB |
testcase_10 | AC | 4 ms
8,772 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 | 4 ms
9,800 KB |
testcase_19 | AC | 472 ms
19,904 KB |
testcase_20 | AC | 576 ms
24,392 KB |
testcase_21 | AC | 595 ms
24,004 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 4 ms
8,772 KB |
testcase_27 | AC | 131 ms
15,996 KB |
testcase_28 | AC | 205 ms
17,608 KB |
testcase_29 | AC | 207 ms
17,816 KB |
testcase_30 | AC | 4 ms
9,156 KB |
testcase_31 | AC | 204 ms
17,220 KB |
testcase_32 | AC | 199 ms
17,360 KB |
testcase_33 | AC | 195 ms
17,388 KB |
testcase_34 | AC | 407 ms
25,800 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; } 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; }