結果
問題 | No.556 仁義なきサルたち |
ユーザー | tsunenarazu |
提出日時 | 2017-08-12 00:11:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 20 ms / 2,000 ms |
コード長 | 1,231 bytes |
コンパイル時間 | 656 ms |
コンパイル使用メモリ | 69,456 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 22:28:08 |
合計ジャッジ時間 | 1,532 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 3 ms
6,816 KB |
testcase_10 | AC | 3 ms
6,820 KB |
testcase_11 | AC | 4 ms
6,820 KB |
testcase_12 | AC | 4 ms
6,820 KB |
testcase_13 | AC | 9 ms
6,820 KB |
testcase_14 | AC | 9 ms
6,820 KB |
testcase_15 | AC | 11 ms
6,820 KB |
testcase_16 | AC | 16 ms
6,820 KB |
testcase_17 | AC | 18 ms
6,820 KB |
testcase_18 | AC | 19 ms
6,820 KB |
testcase_19 | AC | 19 ms
6,824 KB |
testcase_20 | AC | 20 ms
6,820 KB |
testcase_21 | AC | 19 ms
6,816 KB |
ソースコード
#include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <string> #include <vector> #include <iostream> #include <stdlib.h> using namespace std; typedef struct tree tree; struct tree { int key; int rank; struct tree *parent; }; void make_set(tree *x, int key){ x->parent = x; x->key = key; x->rank = 1; } tree *find_set(tree *x){ if(x != x->parent) x->parent = find_set(x->parent); return x->parent; } void link(tree *x, tree *y){ if( find_set(x)->rank > find_set(y)->rank || ( find_set(x)->rank == find_set(y)->rank && find_set(x)->key < find_set(y)->key) ){ find_set(x)->rank += find_set(y)->rank; y->parent = x; } else{ find_set(y)->rank += find_set(x)->rank; x->parent = y; } } void union_set(tree *x, tree *y){ link(find_set(x),find_set(y)); } int main() { int n,m; cin >> n >> m; tree *t[10001]; for(int i=0;i<n;i++){ t[i] = (tree*)malloc(sizeof(tree)); make_set(t[i],i); } int a,b; for(int i=0;i<m;i++){ cin >> a >> b; a--; b--; if(find_set(t[a]) != find_set(t[b])) union_set(t[a],t[b]); } int ans[10001]={}; for(int i=0;i<n;i++) cout << find_set(t[i])->key + 1 << endl; return 0; }