結果

問題 No.826 連絡網
ユーザー koprickykopricky
提出日時 2019-04-23 16:51:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,954 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 75,752 KB
実行使用メモリ 114,500 KB
最終ジャッジ日時 2024-10-14 17:25:19
合計ジャッジ時間 17,794 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
26,880 KB
testcase_01 AC 12 ms
26,820 KB
testcase_02 AC 13 ms
26,868 KB
testcase_03 AC 14 ms
27,264 KB
testcase_04 AC 15 ms
27,392 KB
testcase_05 AC 13 ms
27,136 KB
testcase_06 AC 13 ms
27,008 KB
testcase_07 AC 14 ms
27,272 KB
testcase_08 AC 14 ms
27,136 KB
testcase_09 AC 14 ms
27,324 KB
testcase_10 AC 12 ms
27,008 KB
testcase_11 AC 14 ms
27,140 KB
testcase_12 AC 1,346 ms
89,088 KB
testcase_13 AC 389 ms
50,176 KB
testcase_14 AC 966 ms
72,388 KB
testcase_15 AC 45 ms
31,484 KB
testcase_16 AC 603 ms
56,704 KB
testcase_17 AC 406 ms
50,344 KB
testcase_18 AC 297 ms
44,768 KB
testcase_19 AC 1,572 ms
99,392 KB
testcase_20 AC 1,530 ms
98,176 KB
testcase_21 AC 16 ms
27,648 KB
testcase_22 AC 441 ms
50,560 KB
testcase_23 AC 603 ms
57,856 KB
testcase_24 AC 167 ms
39,636 KB
testcase_25 AC 1,954 ms
113,860 KB
testcase_26 AC 238 ms
42,944 KB
testcase_27 AC 1,338 ms
91,392 KB
testcase_28 AC 1,004 ms
75,572 KB
testcase_29 AC 403 ms
49,792 KB
testcase_30 AC 1,952 ms
114,500 KB
testcase_31 AC 524 ms
55,168 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 main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, p, ans;
    cin >> n >> p;
    for (int i = 2; i <= n; i++) {
        for (int j = 2*i; j <= n; j += i) {
            G[j].push_back(i);
        }
    }
    auto dfs = [&](auto&& self, const int s)->void{
        visit[s] = true, ans++;
        for(int i = 2*s; i <= n; i += s){
            if (!visit[i]) {
                self(self, i);
            }
        }
        for(const int to : G[s]){
            if (!visit[to]) {
                self(self, to);
            }
        }
    };
    dfs(dfs, p);
    cout << ans << "\n";
    return 0;
}
0