結果
問題 | No.1059 素敵な集合 |
ユーザー | kappybar |
提出日時 | 2020-05-22 23:29:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 1,405 bytes |
コンパイル時間 | 1,500 ms |
コンパイル使用メモリ | 169,984 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 09:34:32 |
合計ジャッジ時間 | 2,294 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 12 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 4 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 4 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 6 ms
6,944 KB |
testcase_16 | AC | 3 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 3 ms
6,940 KB |
testcase_19 | AC | 12 ms
6,944 KB |
testcase_20 | AC | 12 ms
6,944 KB |
testcase_21 | AC | 6 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; using ll = long long ; using P = pair<int,int> ; using pll = pair<long long,long long>; constexpr int INF = 1e9; constexpr long long LINF = 1e17; constexpr int MOD = 1000000007; struct Unionfind{ vector<int> parents; int n; Unionfind(int n):n(n),parents(n,-1){ } int find(int x){ if(parents[x] < 0) return x; else return parents[x] = find(parents[x]); } void unite(int x,int y){ x = find(x); y = find(y); if(x==y) return; if(parents[x] > parents[y]) swap(x,y); parents[x] += parents[y]; parents[y] = x; } int size(int x){ return -parents[find(x)]; } bool same(int x,int y){ return find(x)==find(y); } vector<int> members(int x){ int root = find(x); vector<int> member; for(int i=0;i<n;i++){ if(find(i)==root ){ member.push_back(i); } } return member; } int group_cnt(){ int c = 0; rep(i,n){ if(parents[i] < 0) ++c; } return c; } }; int main(){ int L,R; cin >> L >> R; Unionfind uf(R-L+1); for(int i=L;i<=R;i++){ for(int j=2*i;j<=R;j+=i){ uf.unite(j-L,j-i-L); } } cout << uf.group_cnt() - 1 << endl; return 0; }