結果
問題 | No.1166 NADA DNA |
ユーザー | kotatsugame |
提出日時 | 2020-11-27 06:49:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 105 ms / 3,000 ms |
コード長 | 1,098 bytes |
コンパイル時間 | 1,122 ms |
コンパイル使用メモリ | 82,532 KB |
実行使用メモリ | 11,360 KB |
最終ジャッジ日時 | 2024-07-23 21:21:21 |
合計ジャッジ時間 | 3,661 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 26 ms
6,940 KB |
testcase_04 | AC | 104 ms
10,176 KB |
testcase_05 | AC | 103 ms
10,560 KB |
testcase_06 | AC | 105 ms
10,556 KB |
testcase_07 | AC | 104 ms
9,788 KB |
testcase_08 | AC | 103 ms
10,044 KB |
testcase_09 | AC | 103 ms
9,916 KB |
testcase_10 | AC | 104 ms
10,044 KB |
testcase_11 | AC | 103 ms
10,176 KB |
testcase_12 | AC | 105 ms
10,176 KB |
testcase_13 | AC | 103 ms
11,360 KB |
testcase_14 | AC | 104 ms
10,176 KB |
testcase_15 | AC | 104 ms
9,920 KB |
testcase_16 | AC | 104 ms
10,560 KB |
testcase_17 | AC | 104 ms
10,300 KB |
testcase_18 | AC | 104 ms
10,176 KB |
testcase_19 | AC | 103 ms
10,180 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
a.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
ソースコード
#line 1 "a.cpp" #include<iostream> #include<algorithm> #include<vector> using namespace std; #line 2 "/home/kotatsugame/library/datastructure/UF.cpp" struct UF{ int n; vector<int>parent,rank; UF(int n_=0):n(n_),parent(n_),rank(n_,1) { for(int i=0;i<n_;i++)parent[i]=i; } int find(int a){return parent[a]!=a?parent[a]=find(parent[a]):a;} bool same(int a,int b){return find(a)==find(b);} bool unite(int a,int b) { a=find(a),b=find(b); if(a==b)return false; if(rank[a]<rank[b]) { parent[a]=b; rank[b]+=rank[a]; } else { parent[b]=a; rank[a]+=rank[b]; } return true; } int size(int a){return rank[find(a)];} }; #line 6 "a.cpp" int N,L; string S[1000]; main() { cin>>N>>L; for(int i=0;i<N;i++)cin>>S[i]; vector<pair<int,pair<int,int> > >E; for(int i=0;i<N;i++)for(int j=i+1;j<N;j++) { int c=0; for(int k=0;k<L;k++)c+=S[i][k]!=S[j][k]; E.push_back(make_pair(c,make_pair(i,j))); } sort(E.begin(),E.end()); int ans=0; UF uf(N); for(pair<int,pair<int,int> >e:E) { if(uf.unite(e.second.first,e.second.second))ans+=e.first; } cout<<ans<<endl; }