結果

問題 No.826 連絡網
ユーザー beetbeet
提出日時 2019-05-03 21:34:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 870 bytes
コンパイル時間 3,465 ms
コンパイル使用メモリ 203,400 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-05-03 05:01:27
合計ジャッジ時間 4,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 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 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 53 ms
14,464 KB
testcase_13 AC 19 ms
7,808 KB
testcase_14 AC 38 ms
11,648 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 24 ms
8,832 KB
testcase_17 AC 18 ms
7,680 KB
testcase_18 AC 15 ms
6,784 KB
testcase_19 AC 67 ms
16,256 KB
testcase_20 AC 65 ms
16,000 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 19 ms
7,808 KB
testcase_23 AC 25 ms
9,088 KB
testcase_24 AC 11 ms
5,760 KB
testcase_25 AC 86 ms
18,944 KB
testcase_26 AC 13 ms
6,272 KB
testcase_27 AC 55 ms
14,848 KB
testcase_28 AC 39 ms
12,032 KB
testcase_29 AC 19 ms
7,680 KB
testcase_30 AC 89 ms
18,688 KB
testcase_31 AC 23 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


struct UnionFind{
  Int n;
  vector<Int> r,p;
  UnionFind(){}
  UnionFind(Int sz):n(sz),r(sz,1),p(sz,0){iota(p.begin(),p.end(),0);}
  Int find(Int x){
    return (x==p[x]?x:p[x]=find(p[x]));
  }
  bool same(Int x,Int y){
    return find(x)==find(y);
  }
  void unite(Int x,Int y){
    x=find(x);y=find(y);
    if(x==y) return;
    if(r[x]<r[y]) swap(x,y);
    r[x]+=r[y];
    p[y]=x;
  }
  Int size(Int x){
    return r[find(x)];
  }
};

//INSERT ABOVE HERE
signed main(){
  Int n,p;
  cin>>n>>p;
  UnionFind 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