結果

問題 No.826 連絡網
ユーザー koprickykopricky
提出日時 2019-04-23 16:47:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,638 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 71,536 KB
実行使用メモリ 114,372 KB
最終ジャッジ日時 2024-10-14 17:20:29
合計ジャッジ時間 13,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
26,864 KB
testcase_01 AC 8 ms
26,748 KB
testcase_02 AC 10 ms
26,824 KB
testcase_03 AC 11 ms
27,328 KB
testcase_04 AC 13 ms
27,340 KB
testcase_05 AC 10 ms
26,948 KB
testcase_06 AC 11 ms
27,068 KB
testcase_07 AC 11 ms
27,272 KB
testcase_08 AC 10 ms
27,232 KB
testcase_09 AC 12 ms
27,460 KB
testcase_10 AC 11 ms
26,940 KB
testcase_11 AC 10 ms
27,188 KB
testcase_12 AC 1,050 ms
89,080 KB
testcase_13 AC 235 ms
50,248 KB
testcase_14 AC 672 ms
72,472 KB
testcase_15 AC 34 ms
31,488 KB
testcase_16 AC 375 ms
56,860 KB
testcase_17 AC 229 ms
50,240 KB
testcase_18 AC 174 ms
45,252 KB
testcase_19 AC 1,246 ms
99,332 KB
testcase_20 AC 1,289 ms
98,368 KB
testcase_21 AC 14 ms
27,660 KB
testcase_22 AC 265 ms
50,700 KB
testcase_23 AC 350 ms
57,636 KB
testcase_24 AC 99 ms
39,776 KB
testcase_25 AC 1,628 ms
113,860 KB
testcase_26 AC 132 ms
42,372 KB
testcase_27 AC 1,033 ms
91,320 KB
testcase_28 AC 696 ms
75,700 KB
testcase_29 AC 243 ms
49,864 KB
testcase_30 AC 1,638 ms
114,372 KB
testcase_31 AC 327 ms
55,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
#include <cassert>

using namespace std;

const int MAX_N = 1000005;

vector<int> G[MAX_N];
bool visit[MAX_N];
int n, p, ans;

void dfs(int s)
{
    visit[s] = true, ans++;
    for(int i = 2*s; i <= n; i += s){
        if (!visit[i]) {
            dfs(i);
        }
    }
    for(const int to : G[s]){
        if (!visit[to]) {
            dfs(to);
        }
    }
}

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> n >> p;
    for (int i = 2; i <= n; i++) {
        for (int j = 2*i; j <= n; j += i) {
            G[j].push_back(i);
        }
    }
    dfs(p);
    cout << ans << "\n";
    return 0;
}
0