結果

問題 No.826 連絡網
ユーザー firiexpfiriexp
提出日時 2019-05-03 21:35:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 1,181 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 98,600 KB
実行使用メモリ 7,184 KB
最終ジャッジ日時 2024-11-24 09:13:03
合計ジャッジ時間 2,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 34 ms
6,816 KB
testcase_13 AC 13 ms
6,820 KB
testcase_14 AC 26 ms
6,816 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 16 ms
6,816 KB
testcase_17 AC 12 ms
6,820 KB
testcase_18 AC 8 ms
6,816 KB
testcase_19 AC 41 ms
6,820 KB
testcase_20 AC 40 ms
6,820 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 13 ms
6,816 KB
testcase_23 AC 17 ms
6,816 KB
testcase_24 AC 7 ms
6,820 KB
testcase_25 AC 48 ms
7,168 KB
testcase_26 AC 8 ms
6,816 KB
testcase_27 AC 34 ms
6,816 KB
testcase_28 AC 27 ms
6,816 KB
testcase_29 AC 11 ms
6,816 KB
testcase_30 AC 48 ms
7,184 KB
testcase_31 AC 15 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

class UnionFind {
    int n;
    vector<int> uni;
public:
    explicit UnionFind(int n) : uni(static_cast<u32>(n), -1) , n(n){};

    int root(int a){
        if (uni[a] < 0) return a;
        else return (uni[a] = root(uni[a]));
    }

    bool unite(int a, int b) {
        a = root(a);
        b = root(b);
        if(a == b) return false;
        if(uni[a] > uni[b]) swap(a, b);
        uni[a] += uni[b];
        uni[b] = a;
        return true;
    }

    int size(int i){ return -uni[root(i)]; }
    bool same(int a, int b) { return root(a) == root(b); }
};

int main() {
    int n, p;
    cin >> n >> p;
    UnionFind uf(n);
    for (int i = 2; i <= n; ++i) {
        for (int j = i*2; j <= n; j += i) {
            uf.unite(i-1, j-1);
        }
    }
    cout << uf.size(p-1) << "\n";
    return 0;
}
0