結果

問題 No.1059 素敵な集合
ユーザー wdpuyowdpuyo
提出日時 2020-09-23 10:45:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 2,951 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 172,524 KB
実行使用メモリ 7,836 KB
最終ジャッジ日時 2023-09-30 15:41:03
合計ジャッジ時間 2,816 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 15 ms
7,836 KB
testcase_02 AC 6 ms
5,144 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 5 ms
4,404 KB
testcase_07 AC 4 ms
4,384 KB
testcase_08 AC 6 ms
5,068 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 7 ms
4,996 KB
testcase_11 AC 4 ms
4,384 KB
testcase_12 AC 3 ms
4,380 KB
testcase_13 AC 8 ms
5,268 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 13 ms
7,408 KB
testcase_16 AC 5 ms
5,160 KB
testcase_17 AC 5 ms
5,116 KB
testcase_18 AC 7 ms
7,668 KB
testcase_19 AC 24 ms
7,636 KB
testcase_20 AC 23 ms
7,740 KB
testcase_21 AC 13 ms
7,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define INF 1000000007
#define rep(i, N) for(ll i = 0; i < N; i++)
#define rep2(i, j, k) for(ll i = j; i < k; i++)
#define chmax(x, y) x = max(x, y)
#define chmin(x, y) x = min(x, y)
#define print(x) cout << x << "\n"
#define print2(x, y) cout << x << " " << y << "\n"
#define printv(vec) rep(lp, vec.size()) cout << vec[lp] << " "; print(""); 
#define show(x) cerr << #x << " = " << x << "\n";
#define ALL(v) v.begin(), v.end()
#define SUM(v) accumulate(ALL(v), 0)
#define MAX(v) *max_element(ALL(v))
#define MIN(v) *min_element(ALL(v))
#define SORT(v) sort(ALL(v))
#define REV(v) reverse(ALL(v))
#define pb(x) emplace_back(x)
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
typedef long long ll;
using namespace std;
using vl = vector<ll>;
using vvl = vector<vector<ll>>;
using vs = vector<string>;

const int mod = 998244353;
class mint {
public:
	ll x;
	mint(ll x = 0) : x((x % mod + mod) % mod) {}
	mint operator-() const { 
		return mint(-x);
	}
	mint& operator+=(const mint& a) {
		if ((x += a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator-=(const mint& a) {
		if ((x += mod - a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator*=(const  mint& a) {
		(x *= a.x) %= mod;
		return *this;
	}
	mint operator+(const mint& a) const {
		mint res(*this);
		return res += a;
	}
	mint operator-(const mint& a) const {
		mint res(*this);
		return res -= a;
	}
	mint operator*(const mint& a) const {
		mint res(*this);
		return res *= a;
	}
	mint pow(ll t) const {
		if (!t) return 1;
		mint a = pow(t >> 1);
		a *= a;
		if (t & 1) a *= *this;
		return a;
	}
	mint inv() const {
		return pow(mod - 2);
	}
	mint& operator/=(const mint& a) {
		return (*this) *= a.inv();
	}
	mint operator/(const mint& a) const {
		mint res(*this);
		return res /= a;
	}
	friend ostream& operator<<(ostream& os, const mint& m){
		os << m.x;
		return os;
	}
};

ll modpow(ll a, ll n){
	ll res = 1;
	while (n > 0) {
		if (n & 1) res = res * a % mod;
		a = a * a % mod;
		n >>= 1;
	}
	return res;
}

struct union_find{

	vl parent;
	vl sizes;

	void init(ll n) {
	rep(i, n) parent.push_back(i);
	rep(i, n) sizes.push_back(1);
	return;
	}

	ll root(ll n){
	if(parent[n] == n) return n;
	return parent[n] = root(parent[n]);
	}

	ll size(ll n) {
	return sizes[root(n)];
	}

	bool is_same(ll a, ll b){
	return root(a) == root(b);
	}

	void unite(ll a, ll b){
	if(is_same(a, b)) return;
	sizes[root(a)] += size(b);
	parent[root(b)] = root(a);
	return;
	}
	
	ll group_count(){
		ll ret = 0;
		rep(i, parent.size()) ret += (parent[i] == i);
		return ret;
	}
};

void Main(){

	ll L, R;
	cin >> L >> R;
	
	union_find uf;
	uf.init(R + 1);	
	
	rep2(i, L, R + 1){
		for(ll j = 2 * i; j <= R; j += i){
			uf.unite(i, j);
		}
	}
	
	ll ans = uf.group_count() - L - 1;
	print(ans);

}

int main(){
	
	ios_base::sync_with_stdio(false);
	cin.tie(0);
	ll t = 1;
	//cin >> t;
	rep(i, t) Main();
	return 0;
	
}



0