結果

問題 No.826 連絡網
ユーザー PachicobuePachicobue
提出日時 2019-04-23 15:32:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 945 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 84,380 KB
実行使用メモリ 174,676 KB
最終ジャッジ日時 2024-10-14 14:53:35
合計ジャッジ時間 19,272 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 ms
5,248 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 5 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 1,546 ms
124,916 KB
testcase_13 AC 346 ms
48,956 KB
testcase_14 AC 987 ms
91,640 KB
testcase_15 AC 34 ms
12,288 KB
testcase_16 AC 535 ms
61,348 KB
testcase_17 AC 386 ms
49,108 KB
testcase_18 AC 254 ms
38,140 KB
testcase_19 AC 1,894 ms
144,984 KB
testcase_20 AC 1,777 ms
141,460 KB
testcase_21 AC 7 ms
5,248 KB
testcase_22 AC 354 ms
49,708 KB
testcase_23 AC 566 ms
63,308 KB
testcase_24 AC 137 ms
28,264 KB
testcase_25 TLE -
testcase_26 AC 203 ms
33,752 KB
testcase_27 AC 1,574 ms
128,688 KB
testcase_28 AC 1,133 ms
97,864 KB
testcase_29 AC 350 ms
48,520 KB
testcase_30 TLE -
testcase_31 AC 463 ms
58,388 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++) {
            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