結果
問題 | No.1002 Twotone |
ユーザー | _____TAB_____ |
提出日時 | 2020-02-28 22:41:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,141 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 92,684 KB |
実行使用メモリ | 62,708 KB |
最終ジャッジ日時 | 2024-10-13 18:32:04 |
合計ジャッジ時間 | 8,026 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 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 | 133 ms
14,572 KB |
testcase_28 | AC | 211 ms
18,848 KB |
testcase_29 | AC | 208 ms
18,848 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 208 ms
18,704 KB |
testcase_32 | AC | 213 ms
18,852 KB |
testcase_33 | AC | 195 ms
18,848 KB |
testcase_34 | AC | 228 ms
42,368 KB |
ソースコード
#include <cassert> #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<long long,long long> C; vector<long long> Q; long long s = 1, d = 0, f = 0; for(auto e : G[v]){ if(e.first == p){ Q.push_back(-10); continue; } auto q = dfs(G,e.first,v,e.second); Q.push_back(q.first); 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]*(f-C[G[v][i].second]); } assert(diff%2 == 0); ans += diff/2; 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; }