結果
問題 | No.1166 NADA DNA |
ユーザー | msm1993 |
提出日時 | 2020-09-11 16:20:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 164 ms / 3,000 ms |
コード長 | 2,119 bytes |
コンパイル時間 | 2,378 ms |
コンパイル使用メモリ | 179,472 KB |
実行使用メモリ | 26,880 KB |
最終ジャッジ日時 | 2024-12-26 03:29:00 |
合計ジャッジ時間 | 5,895 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 42 ms
9,088 KB |
testcase_04 | AC | 157 ms
26,752 KB |
testcase_05 | AC | 156 ms
26,880 KB |
testcase_06 | AC | 163 ms
26,752 KB |
testcase_07 | AC | 161 ms
26,752 KB |
testcase_08 | AC | 161 ms
26,752 KB |
testcase_09 | AC | 162 ms
26,752 KB |
testcase_10 | AC | 162 ms
26,752 KB |
testcase_11 | AC | 159 ms
26,752 KB |
testcase_12 | AC | 164 ms
26,752 KB |
testcase_13 | AC | 160 ms
26,752 KB |
testcase_14 | AC | 160 ms
26,752 KB |
testcase_15 | AC | 156 ms
26,752 KB |
testcase_16 | AC | 162 ms
26,752 KB |
testcase_17 | AC | 161 ms
26,752 KB |
testcase_18 | AC | 156 ms
26,752 KB |
testcase_19 | AC | 155 ms
26,752 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct UnionFind { // The range of node number is u 0 v n-1 vector<int> rank, parents; UnionFind() {} UnionFind(int n) { // make n trees. rank.resize(n, 0); parents.resize(n, 0); for (int i = 0; i < n; i++) { makeTree(i); } } void makeTree(int x) { parents[x] = x; // the parent of x is x rank[x] = 0; } bool isSame(int x, int y) { return findRoot(x) == findRoot(y); } void unite(int x, int y) { x = findRoot(x); y = findRoot(y); if (rank[x] > rank[y]) { parents[y] = x; } else { parents[x] = y; if (rank[x] == rank[y]) { rank[y]++; } } } int findRoot(int x) { if (x != parents[x]) parents[x] = findRoot(parents[x]); return parents[x]; } }; struct Edge { long long u; long long v; long long cost; }; bool comp_e(const Edge &e1, const Edge &e2) { return e1.cost < e2.cost; } struct Kruskal { UnionFind uft; long long sum; vector<Edge> edges; int V; Kruskal(const vector<Edge> &edges_, int V_) : edges(edges_), V(V_) { init(); } void init() { sort(edges.begin(), edges.end(), comp_e); uft = UnionFind(V); sum = 0; for (auto e : edges) { if (!uft.isSame(e.u, e.v)) { uft.unite(e.u, e.v); sum += e.cost; } } } }; int main() { int N, L; cin >> N >> L; int E=(N * N) / 2; vector<string> vec(N); for (int i = 0; i < N; i++) { cin >> vec[i]; } vector<Edge> edges(E); int count = 0; for (int i = 0; i < N-1; i++) { for (int j = i + 1; j < N; j++) { int sum = 0; for (int k = 0; k < L; k++) { if(vec[i][k] != vec[j][k]) { sum++; } } Edge e = {i, j, sum}; edges[count] = e; count++; } } Kruskal krs(edges, N); cout << krs.sum << endl; return 0; }