結果
問題 | No.556 仁義なきサルたち |
ユーザー | NOSS |
提出日時 | 2018-12-02 18:26:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 21 ms / 2,000 ms |
コード長 | 1,545 bytes |
コンパイル時間 | 1,640 ms |
コンパイル使用メモリ | 169,948 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 05:25:14 |
合計ジャッジ時間 | 2,584 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 10 ms
5,376 KB |
testcase_15 | AC | 11 ms
5,376 KB |
testcase_16 | AC | 17 ms
5,376 KB |
testcase_17 | AC | 18 ms
5,376 KB |
testcase_18 | AC | 20 ms
5,376 KB |
testcase_19 | AC | 19 ms
5,376 KB |
testcase_20 | AC | 20 ms
5,376 KB |
testcase_21 | AC | 21 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll, ll> P; const ll MOD = 1000000007; const int IINF = INT_MAX; const ll LLINF = LLONG_MAX; const int MAX_N = int(5e5 + 5); const double EPS = 1e-10; const int di[] = {0, 1, 0, -1}, dj[] = {1, 0, -1, 0}; #define REP(i, n) for (int i = 0; i < n; i++) #define REPR(i, n) for (int i = n; i >= 0; i--) #define SORT(v) sort((v).begin(), (v).end()) #define ALL(v) (v).begin(), (v).end() struct UnionFindTree { vector<int> par; vector<int> rank; vector<int> siz; void init(int n) { par.resize(n); rank.resize(n); siz.resize(n); for (int i = 0; i < n; i++) { par[i] = i; rank[i] = 0; siz[i] = 1; } } int find(int x) { if (par[x] == x) { return x; } else { return par[x] = find(par[x]); } } void unite(int x, int y) { x = find(x); y = find(y); if (x == y) return; if(x>y)swap(x,y); if(size(x)<size(y))swap(x,y); par[y] = x; siz[x] += siz[y]; } bool is_same(int x, int y) { return find(x) == find(y); } int size(int x) { x = find(x); return siz[x]; } }; UnionFindTree g; int main() { int n, m; cin >> n >> m; g.init(n); REP(i,m){ int a, b; cin >> a >> b; a--; b--; g.unite(a,b); } REP(i,n){ cout << g.find(i)+1 << endl; } return 0; }