結果

問題 No.556 仁義なきサルたち
ユーザー okadukiokaduki
提出日時 2017-08-11 23:52:13
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 2,129 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 167,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-20 23:54:13
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 8 ms
6,944 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 14 ms
6,944 KB
testcase_18 AC 15 ms
6,944 KB
testcase_19 AC 15 ms
6,940 KB
testcase_20 AC 16 ms
6,940 KB
testcase_21 AC 15 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using VI = vector<int>;
using VVI = vector<VI>;
using PII = pair<int, int>;
using LL = long long;
using VL = vector<LL>;
using VVL = vector<VL>;
using PLL = pair<LL, LL>;
using VS = vector<string>;

#define ALL(a)  begin((a)),end((a))
#define RALL(a) (a).rbegin(), (a).rend()
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define SZ(a) int((a).size())
#define SORT(c) sort(ALL((c)))
#define RSORT(c) sort(RALL((c)))
#define UNIQ(c) (c).erase(unique(ALL((c))), end((c)))

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)

#define FF first
#define SS second
template<class S, class T>
istream& operator>>(istream& is, pair<S,T>& p){
  return is >> p.FF >> p.SS;
}
template<class S, class T>
ostream& operator<<(ostream& os, const pair<S,T>& p){
  return os << p.FF << " " << p.SS;
}
template<class T>
void maxi(T& x, T y){
  if(x < y) x = y;
}
template<class T>
void mini(T& x, T y){
  if(x > y) x = y;
}


const double EPS = 1e-10;
const double PI  = acos(-1.0);
const LL MOD = 1e9+7;

class UnionFind{
private:
  vector<int> par, rank, boss, sz;
public:
  UnionFind(int n){
	par.assign(n, 0);
	rank.assign(n, 0);
	boss.assign(n, 0);
	sz.assign(n, 1);
	for(int i=0;i<n;++i){
	  par[i] = boss[i] = i;
	}
  }

  int find(int x){
	if(par[x] == x)
	  return x;
	return (par[x] = find(par[x]));
  }

  void unite(int x, int y){
	x = find(x);
	y = find(y);
	if(x == y) return;
	int nb = -1;
	if(sz[y] < sz[x])
	  nb = boss[x];
	else if(sz[y] > sz[x])
	  nb = boss[y];
	else
	  nb = min(boss[y], boss[x]);

	if(rank[x] < rank[y]){
	  par[x] = y;
	  sz[y] += sz[x];
	  boss[y] = nb;
	}
	else{
	  par[y] = x;
	  sz[x] += sz[y];
	  boss[x] = nb;
	  if(rank[x] == rank[y])
		++rank[x];
	}
  }

  bool same(int x, int y){
	return find(x) == find(y);
  }

  int getBoss(int x){
	return boss[find(x)];
  }
};

int main(){
  cin.tie(0);
  ios_base::sync_with_stdio(false);

  int N, M;
  cin >> N >> M;
  UnionFind uf(N);
  REP(i,M){
	int a, b;
	cin >> a >> b;
	uf.unite(a-1, b-1);
  }
  
  REP(i,N){
	cout << uf.getBoss(i)+1 << endl;
  }

  return 0;
}
0