結果

問題 No.826 連絡網
ユーザー leaf_1415leaf_1415
提出日時 2019-05-06 00:31:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 821 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 60,660 KB
実行使用メモリ 124,152 KB
最終ジャッジ日時 2024-11-24 02:36:36
合計ジャッジ時間 9,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
50,176 KB
testcase_01 AC 39 ms
50,176 KB
testcase_02 AC 40 ms
50,304 KB
testcase_03 AC 42 ms
50,688 KB
testcase_04 AC 42 ms
50,688 KB
testcase_05 AC 40 ms
50,432 KB
testcase_06 AC 40 ms
50,304 KB
testcase_07 AC 42 ms
50,688 KB
testcase_08 AC 41 ms
50,560 KB
testcase_09 AC 42 ms
50,816 KB
testcase_10 AC 39 ms
50,304 KB
testcase_11 AC 41 ms
50,688 KB
testcase_12 AC 577 ms
103,636 KB
testcase_13 AC 203 ms
70,912 KB
testcase_14 AC 407 ms
89,664 KB
testcase_15 AC 61 ms
54,784 KB
testcase_16 AC 255 ms
76,652 KB
testcase_17 AC 209 ms
70,936 KB
testcase_18 AC 150 ms
66,372 KB
testcase_19 AC 665 ms
111,840 KB
testcase_20 AC 646 ms
110,848 KB
testcase_21 AC 43 ms
51,072 KB
testcase_22 AC 220 ms
71,308 KB
testcase_23 AC 262 ms
77,436 KB
testcase_24 AC 117 ms
61,772 KB
testcase_25 AC 814 ms
123,912 KB
testcase_26 AC 127 ms
64,260 KB
testcase_27 AC 596 ms
105,292 KB
testcase_28 AC 448 ms
92,300 KB
testcase_29 AC 207 ms
70,836 KB
testcase_30 AC 821 ms
124,152 KB
testcase_31 AC 254 ms
75,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

int n, p;
vector<int> fact[1000005];
bool prime[1000005];
vector<int> G[1000005];
bool used[1000005];

void dfs(int v)
{
	used[v] = true;
	for(int i = 0; i < G[v].size(); i++){
		if(used[G[v][i]]) continue;
		dfs(G[v][i]);
	}
}

int main(void)
{
	cin >> n >> p;
	
	for(int i = 2; i <= n; i++){
		if(prime[i]) continue;
		for(int j = 2*i; j <= n; j+=i){
			prime[j] = true;
			fact[j].push_back(i);
		}
	}
	
	for(int i = 2; i <= n; i++){
		for(int j = 0; j < fact[i].size(); j++){
			G[i].push_back(fact[i][j]);
			G[fact[i][j]].push_back(i);
		}
	}
	
	dfs(p);
	
	int ans = 0;
	for(int i = 1; i <= n; i++) if(used[i]) ans++;
	cout << ans << endl;
	
	return 0;
}
0