結果

問題 No.826 連絡網
ユーザー chocoruskchocorusk
提出日時 2019-05-03 21:38:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,081 bytes
コンパイル時間 1,175 ms
コンパイル使用メモリ 98,008 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-05-03 05:01:50
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 55 ms
11,904 KB
testcase_13 AC 19 ms
6,656 KB
testcase_14 AC 41 ms
9,856 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 25 ms
7,552 KB
testcase_17 AC 19 ms
6,912 KB
testcase_18 AC 14 ms
6,144 KB
testcase_19 AC 65 ms
13,184 KB
testcase_20 AC 63 ms
13,056 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 19 ms
6,912 KB
testcase_23 AC 26 ms
7,680 KB
testcase_24 AC 10 ms
5,376 KB
testcase_25 AC 85 ms
15,104 KB
testcase_26 AC 12 ms
5,760 KB
testcase_27 AC 59 ms
12,160 KB
testcase_28 AC 42 ms
10,240 KB
testcase_29 AC 18 ms
6,784 KB
testcase_30 AC 81 ms
15,104 KB
testcase_31 AC 24 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int sz[1000010];
int par[1000010];
int rk[1000010];
void init(int n){
	for(int i=0; i<n; i++){
		par[i]=i;
        rk[i]=0;
        sz[i]=1;
	}
}
int find(int x){
	if(par[x]==x){
		return x;
	}else{
		return par[x]=find(par[x]);
	}
}
void unite(int x, int y){
	x=find(x);
	y=find(y);
	if(x==y) return;
	if(rk[x]<rk[y]){
		par[x]=y;
        sz[y]+=sz[x];
	}else{
		par[y]=x;
        sz[x]+=sz[y];
		if(rk[x]==rk[y]) rk[x]++;
	}
}
int main()
{
    int n, p; cin>>n>>p;
    init(n+1);
    for(int i=2; i<=n; i++){
        for(int j=i; j+i<=n; j+=i){
            unite(j, j+i);
        }
    }
    cout<<sz[find(p)]<<endl;
    return 0;
}
0