結果
問題 | No.2200 Weird Shortest Path |
ユーザー | siman |
提出日時 | 2023-01-29 18:01:59 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 229 ms / 2,000 ms |
コード長 | 1,790 bytes |
コンパイル時間 | 3,242 ms |
コンパイル使用メモリ | 144,384 KB |
実行使用メモリ | 7,380 KB |
最終ジャッジ日時 | 2024-06-29 14:05:57 |
合計ジャッジ時間 | 8,814 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 71 ms
6,944 KB |
testcase_18 | AC | 127 ms
6,944 KB |
testcase_19 | AC | 218 ms
6,940 KB |
testcase_20 | AC | 209 ms
6,948 KB |
testcase_21 | AC | 82 ms
6,944 KB |
testcase_22 | AC | 113 ms
6,940 KB |
testcase_23 | AC | 221 ms
6,944 KB |
testcase_24 | AC | 38 ms
6,944 KB |
testcase_25 | AC | 210 ms
6,944 KB |
testcase_26 | AC | 221 ms
6,944 KB |
testcase_27 | AC | 76 ms
6,944 KB |
testcase_28 | AC | 164 ms
6,944 KB |
testcase_29 | AC | 223 ms
7,120 KB |
testcase_30 | AC | 221 ms
6,944 KB |
testcase_31 | AC | 134 ms
6,940 KB |
testcase_32 | AC | 224 ms
7,244 KB |
testcase_33 | AC | 226 ms
7,252 KB |
testcase_34 | AC | 227 ms
7,252 KB |
testcase_35 | AC | 229 ms
7,372 KB |
testcase_36 | AC | 226 ms
7,376 KB |
testcase_37 | AC | 227 ms
7,380 KB |
testcase_38 | AC | 227 ms
7,252 KB |
testcase_39 | AC | 114 ms
6,940 KB |
testcase_40 | AC | 164 ms
7,248 KB |
testcase_41 | AC | 100 ms
6,944 KB |
testcase_42 | AC | 151 ms
7,248 KB |
testcase_43 | AC | 208 ms
7,376 KB |
testcase_44 | AC | 208 ms
7,352 KB |
testcase_45 | AC | 209 ms
7,248 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; const int MAX_N = 200000; vector<int> _parent; vector<int> _rank; vector<int> _size; class UnionFind { public: UnionFind(int n) { for (int i = 0; i < n; ++i) { _parent.push_back(i); _rank.push_back(0); _size.push_back(1); } } int find(int x) { if (_parent[x] == x) { return x; } else { return _parent[x] = find(_parent[x]); } } void unite(int x, int y) { x = find(x); y = find(y); if (x == y) return; if (_rank[x] < _rank[y]) { _parent[x] = y; _size[y] += _size[x]; } else { _parent[y] = x; _size[x] += _size[y]; if (_rank[x] == _rank[y]) ++_rank[x]; } } bool same(int x, int y) { return find(x) == find(y); } int size(int x) { return _size[find(x)]; } }; struct Edge { int from; int to; int cost; Edge(int from = -1, int to = -1, int cost = -1) { this->from = from; this->to = to; this->cost = cost; } bool operator>(const Edge &e) const { return cost > e.cost; } }; int main() { int N, M; cin >> N >> M; priority_queue <Edge, vector<Edge>, greater<Edge>> pque; for (int i = 0; i < M; ++i) { int a, b, w; cin >> a >> b >> w; pque.push(Edge(a, b, w)); } ll ans = 0; UnionFind uf(N + 1); while (not pque.empty()) { Edge e = pque.top(); pque.pop(); if (uf.same(e.from, e.to)) continue; ll size = uf.size(e.from) * uf.size(e.to); uf.unite(e.from, e.to); ans += size * e.cost; } cout << ans << endl; return 0; }