結果
| 問題 |
No.1059 素敵な集合
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-23 10:45:36 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 2,000 ms |
| コード長 | 2,951 bytes |
| コンパイル時間 | 1,658 ms |
| コンパイル使用メモリ | 176,544 KB |
| 実行使用メモリ | 7,900 KB |
| 最終ジャッジ日時 | 2024-07-23 09:41:43 |
| 合計ジャッジ時間 | 2,535 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
#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;
}