結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 6 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 3 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,636 ms
124,952 KB
testcase_13 AC 371 ms
48,920 KB
testcase_14 AC 1,029 ms
91,712 KB
testcase_15 AC 34 ms
12,288 KB
testcase_16 AC 538 ms
61,172 KB
testcase_17 AC 384 ms
49,072 KB
testcase_18 AC 265 ms
38,116 KB
testcase_19 AC 1,993 ms
145,036 KB
testcase_20 AC 1,937 ms
141,264 KB
testcase_21 AC 6 ms
5,248 KB
testcase_22 AC 369 ms
49,544 KB
testcase_23 AC 534 ms
63,236 KB
testcase_24 AC 134 ms
28,240 KB
testcase_25 TLE -
testcase_26 AC 199 ms
33,468 KB
testcase_27 AC 1,716 ms
128,860 KB
testcase_28 AC 1,224 ms
97,792 KB
testcase_29 AC 394 ms
48,484 KB
testcase_30 TLE -
testcase_31 AC 549 ms
58,344 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);
    for (int i = 2; i <= N; i++) {
        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