結果
問題 | No.1002 Twotone |
ユーザー | kimiyuki |
提出日時 | 2020-02-28 22:41:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,313 bytes |
コンパイル時間 | 2,503 ms |
コンパイル使用メモリ | 224,576 KB |
実行使用メモリ | 72,912 KB |
最終ジャッジ日時 | 2024-10-13 18:33:29 |
合計ジャッジ時間 | 10,517 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 135 ms
12,524 KB |
testcase_28 | AC | 226 ms
15,908 KB |
testcase_29 | AC | 229 ms
15,888 KB |
testcase_30 | AC | 1 ms
5,248 KB |
testcase_31 | AC | 215 ms
15,496 KB |
testcase_32 | AC | 215 ms
15,900 KB |
testcase_33 | AC | 205 ms
15,648 KB |
testcase_34 | WA | - |
ソースコード
#include <bits/stdc++.h> #define REP(i, n) for (int i = 0; (i) < (int)(n); ++ (i)) using namespace std; int64_t solve(int n, const vector<vector<pair<int, int> > > & g) { int64_t ans = 0; function<map<int, int> (int, int)> go = [&](int x, int parent) { int sum_one = 0; map<int, int> one; map<pair<int, int>, int> two; for (auto [y, c] : g[x]) if (y != parent) { auto sub = go(y, x); for (auto [d, k] : sub) if (d != c) { ans += (int64_t)k; ans += (int64_t)k * two[minmax({ c, d })]; ans += (int64_t)k * (one.count(c) ? one[c] : 0); ans += (int64_t)k * (one.count(d) ? one[d] : 0); two[minmax({ c, d })] += k; } int k = 1 + (sub.count(c) ? sub[c] : 0); ans += (int64_t)k * (sum_one - (one.count(c) ? one[c] : 0)); one[c] += k; sum_one += k; } return one; }; go(0, -1); return ans; } int main() { int n, k; cin >> n >> k; vector<vector<pair<int, int> > > g(n); REP (i, n - 1) { int u, v, c; cin >> u >> v >> c; -- u; -- v; g[u].emplace_back(v, c); g[v].emplace_back(u, c); } cout << solve(n, g) << endl; return 0; }