結果

問題 No.826 連絡網
ユーザー satou_a_mansatou_a_man
提出日時 2019-05-03 22:16:08
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 949 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 203,260 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-11-24 02:24:57
合計ジャッジ時間 3,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,076 KB
testcase_01 AC 4 ms
7,040 KB
testcase_02 AC 5 ms
7,168 KB
testcase_03 AC 4 ms
6,992 KB
testcase_04 AC 5 ms
7,168 KB
testcase_05 AC 4 ms
7,168 KB
testcase_06 AC 4 ms
7,040 KB
testcase_07 AC 4 ms
7,040 KB
testcase_08 AC 4 ms
7,168 KB
testcase_09 AC 4 ms
7,156 KB
testcase_10 AC 4 ms
7,040 KB
testcase_11 AC 4 ms
7,040 KB
testcase_12 AC 76 ms
10,880 KB
testcase_13 AC 27 ms
8,576 KB
testcase_14 AC 54 ms
9,812 KB
testcase_15 AC 9 ms
7,424 KB
testcase_16 AC 35 ms
8,912 KB
testcase_17 AC 26 ms
8,576 KB
testcase_18 AC 21 ms
8,320 KB
testcase_19 AC 88 ms
11,412 KB
testcase_20 AC 87 ms
11,392 KB
testcase_21 AC 5 ms
7,144 KB
testcase_22 AC 27 ms
8,588 KB
testcase_23 AC 36 ms
9,080 KB
testcase_24 AC 16 ms
7,936 KB
testcase_25 AC 107 ms
12,160 KB
testcase_26 AC 18 ms
8,104 KB
testcase_27 AC 78 ms
11,008 KB
testcase_28 AC 59 ms
10,072 KB
testcase_29 AC 28 ms
8,576 KB
testcase_30 AC 108 ms
12,288 KB
testcase_31 AC 33 ms
8,896 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