結果

問題 No.826 連絡網
ユーザー satou_a_mansatou_a_man
提出日時 2019-05-03 22:16:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 2,166 ms
コンパイル使用メモリ 204,628 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-05-03 05:10:53
合計ジャッジ時間 4,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,960 KB
testcase_01 AC 4 ms
7,144 KB
testcase_02 AC 4 ms
7,072 KB
testcase_03 AC 5 ms
7,168 KB
testcase_04 AC 4 ms
7,040 KB
testcase_05 AC 5 ms
7,040 KB
testcase_06 AC 4 ms
7,168 KB
testcase_07 AC 5 ms
7,168 KB
testcase_08 AC 4 ms
7,168 KB
testcase_09 AC 5 ms
7,168 KB
testcase_10 AC 5 ms
7,040 KB
testcase_11 AC 5 ms
7,140 KB
testcase_12 AC 76 ms
10,752 KB
testcase_13 AC 27 ms
8,576 KB
testcase_14 AC 55 ms
9,812 KB
testcase_15 AC 9 ms
7,424 KB
testcase_16 AC 37 ms
8,960 KB
testcase_17 AC 28 ms
8,576 KB
testcase_18 AC 21 ms
8,252 KB
testcase_19 AC 89 ms
11,500 KB
testcase_20 AC 88 ms
11,392 KB
testcase_21 AC 5 ms
7,040 KB
testcase_22 AC 28 ms
8,644 KB
testcase_23 AC 38 ms
8,960 KB
testcase_24 AC 17 ms
7,808 KB
testcase_25 AC 108 ms
12,160 KB
testcase_26 AC 18 ms
8,076 KB
testcase_27 AC 79 ms
10,880 KB
testcase_28 AC 60 ms
10,112 KB
testcase_29 AC 27 ms
8,576 KB
testcase_30 AC 109 ms
12,160 KB
testcase_31 AC 34 ms
8,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define repeat(i,s,n) for(int (i)=s; (i)<(n); (i)++)
#define revrep(i,n) for(int (i)=(n)-1;i>=0; i--)

int MAX_N=1000000;
vector<int> UF=vector<int>(MAX_N+1);
void init() {
    for(int i=0; i<MAX_N+1; i++)
        UF[i]=i;
}
int root(int a) {
    if(UF[a]==a)
        return a;
    return UF[a]=root(UF[a]);
}
void unite(int a, int b) {
  a=root(a);
  b=root(b);
  if(a==b)
    return;
  UF[a]=b;
}
bool same(int a, int b) {
    return root(a)==root(b);
}

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout<<setprecision(std::numeric_limits<float>::max_digits10);
  int n,p;
  cin>>n>>p;
  init();
  for(int k=2; k<n; k++) {
    int s=k;
    while(s+k<=n) {
      unite(s,s+k);
      s+=k;
    }
  }
  int ans=0;
  for(int x=1; x<=n; x++) {
    if(same(x,p)) {
      ans++;
    }
  }
  cout << ans << endl;
  return 0;
}
0