結果

問題 No.826 連絡網
ユーザー ninoinuininoinui
提出日時 2020-07-18 09:14:06
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 204,772 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-11-30 20:25:45
合計ジャッジ時間 3,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 61 ms
8,832 KB
testcase_13 AC 21 ms
5,632 KB
testcase_14 AC 45 ms
7,424 KB
testcase_15 AC 5 ms
5,248 KB
testcase_16 AC 31 ms
6,144 KB
testcase_17 AC 24 ms
5,504 KB
testcase_18 AC 18 ms
5,248 KB
testcase_19 AC 74 ms
9,728 KB
testcase_20 AC 71 ms
9,728 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 22 ms
5,504 KB
testcase_23 AC 30 ms
6,144 KB
testcase_24 AC 12 ms
5,248 KB
testcase_25 AC 92 ms
11,008 KB
testcase_26 AC 15 ms
5,248 KB
testcase_27 AC 65 ms
9,088 KB
testcase_28 AC 49 ms
7,680 KB
testcase_29 AC 21 ms
5,504 KB
testcase_30 AC 91 ms
11,008 KB
testcase_31 AC 28 ms
6,016 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