結果
問題 | No.1002 Twotone |
ユーザー | _____TAB_____ |
提出日時 | 2020-02-28 22:28:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,200 bytes |
コンパイル時間 | 1,008 ms |
コンパイル使用メモリ | 92,628 KB |
実行使用メモリ | 68,736 KB |
最終ジャッジ日時 | 2024-10-13 17:56:35 |
合計ジャッジ時間 | 8,647 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 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 | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 136 ms
15,800 KB |
testcase_28 | AC | 228 ms
20,032 KB |
testcase_29 | AC | 228 ms
20,044 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 212 ms
19,948 KB |
testcase_32 | AC | 221 ms
20,004 KB |
testcase_33 | AC | 209 ms
20,004 KB |
testcase_34 | AC | 234 ms
45,440 KB |
ソースコード
#include <iostream> #include <vector> #include <map> using namespace std; long long ans = 0; pair<long long,long long> dfs(const vector<vector<pair<int,int>>> &G, int v, int p, int c){ map<int,int> C; vector<pair<long long,long long>> Q; long long s = 1, d = 0, f = 0; for(auto e : G[v]){ if(e.first == p){ Q.emplace_back(-10,-10); continue; } auto q = dfs(G,e.first,v,e.second); Q.push_back(q); C[e.second] += q.first; f += q.first; if(e.second == c) s += q.first, d += q.second; else d += q.first; ans += q.second; // diff += q.second; } long long diff = 0; for(size_t i = 0; i < G[v].size(); ++i){ if(G[v][i].first == p) continue; // ans += Q[i].first*(f-C[G[v][i].second]); diff += Q[i].first*(f-C[G[v][i].second]); } ans += diff/2; // cerr << v << " {" << s << ", " << d << "}\n"; // cerr << v << " " << diff << endl; return {s,d}; } int main(){ int N, K; cin >> N >> K; vector<vector<pair<int,int>>> G(N); for(int i = 1; i < N; ++i){ int u, v, c; cin >> u >> v >> c; --u,--v,--c; G[u].emplace_back(v,c); G[v].emplace_back(u,c); } dfs(G,0,-1,-1); cout << ans << endl; }