結果

問題 No.826 連絡網
ユーザー kazumakazuma
提出日時 2019-05-03 21:31:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 195,928 KB
最終ジャッジ日時 2025-01-07 03:21:21
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,824 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 39 ms
6,824 KB
testcase_13 AC 14 ms
6,824 KB
testcase_14 AC 29 ms
6,824 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 19 ms
6,816 KB
testcase_17 AC 16 ms
6,820 KB
testcase_18 AC 11 ms
6,820 KB
testcase_19 AC 45 ms
6,820 KB
testcase_20 AC 44 ms
6,820 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 15 ms
6,820 KB
testcase_23 AC 19 ms
6,816 KB
testcase_24 AC 8 ms
6,816 KB
testcase_25 AC 56 ms
7,048 KB
testcase_26 AC 10 ms
6,820 KB
testcase_27 AC 41 ms
6,820 KB
testcase_28 AC 32 ms
6,816 KB
testcase_29 AC 16 ms
6,820 KB
testcase_30 AC 54 ms
7,064 KB
testcase_31 AC 17 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

class union_find {
	vector<int> par;
public:
	union_find(int n) : par(n, -1) {}
	int find(int a) {
		return par[a] < 0 ? a : par[a] = find(par[a]);
	}
	bool same(int a, int b) {
		return find(a) == find(b);
	}
	void unite(int a, int b) {
		a = find(a);
		b = find(b);
		if (a == b) return;
		if (par[a] < par[b]) {
			par[a] += par[b];
			par[b] = a;
		}
		else {
			par[b] += par[a];
			par[a] = b;
		}
	}
	int size(int a) {
		return -par[find(a)];
	}
};

int main()
{
	int N, P;
	cin >> N >> P;
	union_find uf(N + 1);
	for (int i = 2; i <= N; i++) {
		for (int j = i; j <= N; j += i) {
			uf.unite(i, j);
		}
	}
	cout << uf.size(P) << endl;
	return 0;
}
0