結果

問題 No.826 連絡網
ユーザー PachicobuePachicobue
提出日時 2019-04-23 15:33:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 873 ms
コンパイル使用メモリ 84,756 KB
実行使用メモリ 73,428 KB
最終ジャッジ日時 2024-05-03 04:59:13
合計ジャッジ時間 5,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 312 ms
53,616 KB
testcase_13 AC 82 ms
23,100 KB
testcase_14 AC 227 ms
39,932 KB
testcase_15 AC 14 ms
7,424 KB
testcase_16 AC 121 ms
27,808 KB
testcase_17 AC 77 ms
23,128 KB
testcase_18 AC 73 ms
18,428 KB
testcase_19 AC 386 ms
61,664 KB
testcase_20 AC 359 ms
59,544 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 74 ms
23,464 KB
testcase_23 AC 117 ms
28,624 KB
testcase_24 AC 38 ms
14,308 KB
testcase_25 AC 465 ms
71,724 KB
testcase_26 AC 46 ms
16,600 KB
testcase_27 AC 319 ms
55,012 KB
testcase_28 AC 223 ms
42,568 KB
testcase_29 AC 71 ms
23,052 KB
testcase_30 AC 469 ms
73,428 KB
testcase_31 AC 118 ms
26,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
#include <cassert>
int main()
{
    int N, P;
    std::cin >> N >> P;
    assert(1 <= N and N <= 1000000);
    assert(1 <= P and P <= N);
    std::vector<std::vector<int>> G(N + 1);
    std::vector<bool> isPrime(N + 1, true);
    isPrime[0] = isPrime[1] = true;
    for (int i = 2; i <= N; i++) {
        if (not isPrime[i]) { continue; }
        for (int j = 2; i * j <= N; j++) {
            isPrime[i * j] = false;
            G[i].push_back(i * j);
            G[i * j].push_back(i);
        }
    }
    std::vector<bool> visited(N + 1, false);
    std::queue<int> Q;
    Q.push(P);
    visited[P] = true;
    int ans = 1;
    while (not Q.empty()) {
        const int s = Q.front();
        Q.pop();
        for (const int to : G[s]) {
            if (visited[to]) { continue; }
            visited[to] = true;
            Q.push(to);
            ans++;
        }
    }
    std::cout << ans << std::endl;
    return 0;
}
0