結果

問題 No.826 連絡網
ユーザー simansiman
提出日時 2021-08-05 16:57:02
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,386 bytes
コンパイル時間 1,163 ms
コンパイル使用メモリ 141,036 KB
実行使用メモリ 16,144 KB
最終ジャッジ日時 2024-09-16 15:21:10
合計ジャッジ時間 2,990 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
15,976 KB
testcase_01 AC 18 ms
16,092 KB
testcase_02 AC 18 ms
15,988 KB
testcase_03 AC 18 ms
15,992 KB
testcase_04 AC 18 ms
16,040 KB
testcase_05 AC 18 ms
16,104 KB
testcase_06 AC 18 ms
15,904 KB
testcase_07 AC 18 ms
16,124 KB
testcase_08 AC 17 ms
15,972 KB
testcase_09 AC 18 ms
16,024 KB
testcase_10 AC 17 ms
16,016 KB
testcase_11 AC 16 ms
15,972 KB
testcase_12 AC 41 ms
16,076 KB
testcase_13 AC 26 ms
15,904 KB
testcase_14 AC 34 ms
15,972 KB
testcase_15 AC 18 ms
16,132 KB
testcase_16 AC 27 ms
15,988 KB
testcase_17 AC 25 ms
15,956 KB
testcase_18 AC 23 ms
16,000 KB
testcase_19 AC 45 ms
15,896 KB
testcase_20 AC 45 ms
16,072 KB
testcase_21 AC 17 ms
16,144 KB
testcase_22 AC 26 ms
15,964 KB
testcase_23 AC 29 ms
16,004 KB
testcase_24 AC 21 ms
15,900 KB
testcase_25 AC 53 ms
15,976 KB
testcase_26 AC 23 ms
15,900 KB
testcase_27 AC 42 ms
16,140 KB
testcase_28 AC 36 ms
16,068 KB
testcase_29 AC 25 ms
15,988 KB
testcase_30 AC 52 ms
16,080 KB
testcase_31 AC 28 ms
15,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <limits.h>
#include <map>
#include <queue>
#include <string.h>
#include <vector>

using namespace std;
typedef long long ll;

const int MAX_N = 1000010;
vector<int> parent;
vector<int> _rank;
vector<int> _size;

class UnionFind {
public:
  UnionFind(int n) {
    for (int i = 0; i < n; ++i) {
      parent.push_back(i);
      _rank.push_back(0);
      _size.push_back(1);
    }
  }

  int find(int x) {
    if (parent[x] == x) {
      return x;
    } else {
      return parent[x] = find(parent[x]);
    }
  }

  void unite(int x, int y) {
    x = find(x);
    y = find(y);
    if (x == y) return;

    if (_rank[x] < _rank[y]) {
      parent[x] = y;
      _size[y] += _size[x];
    } else {
      parent[y] = x;
      _size[x] += _size[y];
      if (_rank[x] == _rank[y]) ++_rank[x];
    }
  }

  bool same(int x, int y) {
    return find(x) == find(y);
  }

  int size(int x) {
    return _size[find(x)];
  }
};

int main() {
  int N, P;
  cin >> N >> P;

  UnionFind uf(MAX_N);
  bool visited[MAX_N];
  memset(visited, false, sizeof(visited));

  for (int i = 2; i <= N; ++i) {
    if (visited[i]) continue;
    visited[i] = true;

    for (int j = 2 * i; j <= N; j += i) {
      visited[j] = true;
      uf.unite(i, j);
    }
  }

  cout << uf.size(P) << endl;

  return 0;
}

0