#define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=GRL_2_A" #include <iostream> #include "Mylib/Graph/MinimumSpanningTree/prim.cpp" #include "Mylib/Graph/Template/graph.cpp" namespace hl = haar_lib; int main() { int V, E; std::cin >> V >> E; hl::graph<int64_t> g(V); g.read<0, false>(E); auto res = hl::prim(g); int64_t ans = 0; for (auto &e : res) ans += e.cost; std::cout << ans << std::endl; return 0; }
#line 1 "test/aoj/GRL_2_A/main.prim.test.cpp" #define PROBLEM "http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=GRL_2_A" #include <iostream> #line 2 "Mylib/Graph/MinimumSpanningTree/prim.cpp" #include <queue> #include <vector> #line 4 "Mylib/Graph/Template/graph.cpp" namespace haar_lib { template <typename T> struct edge { int from, to; T cost; int index = -1; edge() {} edge(int from, int to, T cost) : from(from), to(to), cost(cost) {} edge(int from, int to, T cost, int index) : from(from), to(to), cost(cost), index(index) {} }; template <typename T> struct graph { using weight_type = T; using edge_type = edge<T>; std::vector<std::vector<edge<T>>> data; auto& operator[](size_t i) { return data[i]; } const auto& operator[](size_t i) const { return data[i]; } auto begin() const { return data.begin(); } auto end() const { return data.end(); } graph() {} graph(int N) : data(N) {} bool empty() const { return data.empty(); } int size() const { return data.size(); } void add_edge(int i, int j, T w, int index = -1) { data[i].emplace_back(i, j, w, index); } void add_undirected(int i, int j, T w, int index = -1) { add_edge(i, j, w, index); add_edge(j, i, w, index); } template <size_t I, bool DIRECTED = true, bool WEIGHTED = true> void read(int M) { for (int i = 0; i < M; ++i) { int u, v; std::cin >> u >> v; u -= I; v -= I; T w = 1; if (WEIGHTED) std::cin >> w; if (DIRECTED) add_edge(u, v, w, i); else add_undirected(u, v, w, i); } } }; template <typename T> using tree = graph<T>; } // namespace haar_lib #line 5 "Mylib/Graph/MinimumSpanningTree/prim.cpp" namespace haar_lib { template <typename T> std::vector<edge<T>> prim(const graph<T> &graph) { const int n = graph.size(); std::vector<bool> visit(n, false); std::vector<edge<T>> ret; auto cmp = [](const auto &a, const auto &b) { return a.cost > b.cost; }; std::priority_queue<edge<T>, std::vector<edge<T>>, decltype(cmp)> pq(cmp); visit[0] = true; for (auto &e : graph[0]) pq.push(e); while (not pq.empty()) { auto t = pq.top(); pq.pop(); if (visit[t.from] == visit[t.to]) continue; int i = visit[t.from] ? t.to : t.from; for (auto &e : graph[i]) { pq.push(e); } visit[i] = true; ret.push_back(t); } return ret; } } // namespace haar_lib #line 6 "test/aoj/GRL_2_A/main.prim.test.cpp" namespace hl = haar_lib; int main() { int V, E; std::cin >> V >> E; hl::graph<int64_t> g(V); g.read<0, false>(E); auto res = hl::prim(g); int64_t ans = 0; for (auto &e : res) ans += e.cost; std::cout << ans << std::endl; return 0; }