結果

問題 No.826 連絡網
ユーザー ninoinuininoinui
提出日時 2020-07-18 09:14:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 204,816 KB
実行使用メモリ 10,968 KB
最終ジャッジ日時 2024-05-07 23:25:49
合計ジャッジ時間 4,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 63 ms
8,832 KB
testcase_13 AC 21 ms
6,940 KB
testcase_14 AC 48 ms
7,552 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 30 ms
6,940 KB
testcase_17 AC 23 ms
6,940 KB
testcase_18 AC 18 ms
6,944 KB
testcase_19 AC 71 ms
9,844 KB
testcase_20 AC 72 ms
9,660 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 22 ms
6,944 KB
testcase_23 AC 30 ms
6,944 KB
testcase_24 AC 11 ms
6,940 KB
testcase_25 AC 84 ms
10,956 KB
testcase_26 AC 14 ms
6,944 KB
testcase_27 AC 62 ms
9,208 KB
testcase_28 AC 48 ms
7,680 KB
testcase_29 AC 21 ms
6,940 KB
testcase_30 AC 82 ms
10,968 KB
testcase_31 AC 26 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

class UnionFind {
private:
  int sz;
  vector<int> par, siz;
public:
  UnionFind() {}
  UnionFind(int n) : sz(n), par(sz), siz(sz, 1) {
    iota(par.begin(), par.end(), 0);
  }
  int root(int x) {
    if (par.at(x) == x) return x;
    else return par.at(x) = root(par.at(x));
  }
  void unit(int x,int y) {
    x = root(x), y = root(y);
    if (x == y) return;
    if (siz.at(x) < siz.at(y)) swap(x, y);
    par.at(y) = x;
    siz.at(x) += siz.at(y);
  }
  int size(int x) {
    x = root(x);
    return siz.at(x);
  }
  bool same(int x, int y) {
    return root(x) == root(y);
  }
};

int main() {
  int N, P;
  cin >> N >> P;
  UnionFind UF(N + 1);
  for (int i = 2; i <= N; i++) {
    for (int j = i + i; j <= N; j += i) UF.unit(j - i, j);
  }
  cout << UF.size(P) << "\n";
}
0