結果
問題 | No.1059 素敵な集合 |
ユーザー | hedwig100 |
提出日時 | 2020-05-22 22:18:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 14 ms / 2,000 ms |
コード長 | 1,641 bytes |
コンパイル時間 | 1,629 ms |
コンパイル使用メモリ | 171,340 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-23 09:30:46 |
合計ジャッジ時間 | 2,430 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for (int i = 0; i < (n); i ++) using namespace std; typedef long long ll; typedef pair<ll,ll> PL; typedef pair<int,int> P; const int INF = 1e9; const ll MOD = 1e9 + 7; struct UnionFind { int N; vector<int> parents; UnionFind(int _N) : N(_N){ parents = vector<int>(N,-1); } int find(int x) { //xの親を返す if (parents[x] < 0) return x; return parents[x] = find(parents[x]); } void unite(int x, int y) { //xとyの含むグループを併合 int px = find(x); int py = find(y); if (parents[px] > parents[py]) swap(px,py); if (px != py) { parents[px] += parents[py]; parents[py] = px; } } bool same(int x, int y) { //x,yが同じグループにいるか判定 return find(x) == find(y); } int size(int x) { //xと同じグループのメンバーの個数 return -parents[find(x)]; } vector<int> root() {//ufの根を列挙 vector<int> res; for (int i = 0; i < N; i ++) { if (parents[i] < 0) res.push_back(i); } return res; } int group_count() { //ufのグループの数を数える int cnt = 0; for (int i = 0; i < N; i ++) { if (parents[i] < 0) cnt ++; } return cnt; } }; int main() { int L,R; cin >> L >> R; UnionFind uf(R - L + 1); for (int i = L;i < R + 1;i++){ for (int j = 1;j*i < R + 1;j++){ uf.unite(i - L,j*i - L); } } cout << uf.group_count() - 1 << endl; }