結果

問題 No.1059 素敵な集合
ユーザー HaaHaa
提出日時 2020-05-28 13:39:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 174,136 KB
実行使用メモリ 59,920 KB
最終ジャッジ日時 2024-07-23 09:39:17
合計ジャッジ時間 3,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,236 KB
testcase_01 AC 353 ms
59,920 KB
testcase_02 AC 21 ms
11,852 KB
testcase_03 AC 4 ms
8,328 KB
testcase_04 AC 5 ms
8,232 KB
testcase_05 AC 5 ms
8,312 KB
testcase_06 AC 17 ms
11,272 KB
testcase_07 AC 19 ms
11,228 KB
testcase_08 AC 24 ms
12,708 KB
testcase_09 AC 7 ms
9,020 KB
testcase_10 AC 40 ms
17,028 KB
testcase_11 AC 21 ms
11,784 KB
testcase_12 AC 10 ms
9,616 KB
testcase_13 AC 48 ms
16,220 KB
testcase_14 AC 5 ms
8,472 KB
testcase_15 AC 88 ms
24,536 KB
testcase_16 AC 21 ms
12,132 KB
testcase_17 AC 17 ms
11,544 KB
testcase_18 AC 5 ms
8,352 KB
testcase_19 AC 279 ms
55,696 KB
testcase_20 AC 297 ms
54,028 KB
testcase_21 AC 88 ms
22,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
const ll MOD = 1000000007;
const ll INF = 4611686018427387903;
#define REP(i, n) for (int i = 0; i < n; i++)
#define ALL(v) v.begin(), v.end()

VVI edge(214514, VI(0));
vector<bool> f(214514,0);
void dfs(int v, int p) {
	for (auto to:edge[v]) {
		if (to!=p&&!f[to]){
			f[to]=1;
			dfs(to, v);
		}
	}
}

int main(){
	int l, r; cin >> l >> r;
	for(int i=l;i<=r;i++){
		for(int j=i*2;j<=r;j+=i){
			edge[i].push_back(j);
			edge[j].push_back(i);
		}
	}
	int ans=0;
	for(int i=l;i<=r;i++){
		if(!f[i]){
			ans++;
			f[i]=1;
			dfs(i,-1);
		}
	}
	cout << ans-1 << endl;
	return 0;
}
0