結果

問題 No.826 連絡網
ユーザー koprickykopricky
提出日時 2019-04-23 17:06:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,201 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 76,240 KB
実行使用メモリ 108,800 KB
最終ジャッジ日時 2024-10-15 00:01:10
合計ジャッジ時間 18,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
26,752 KB
testcase_01 AC 21 ms
26,752 KB
testcase_02 AC 22 ms
26,880 KB
testcase_03 AC 22 ms
27,136 KB
testcase_04 AC 24 ms
27,264 KB
testcase_05 AC 23 ms
27,008 KB
testcase_06 AC 22 ms
27,008 KB
testcase_07 AC 23 ms
27,264 KB
testcase_08 AC 21 ms
26,880 KB
testcase_09 AC 24 ms
27,264 KB
testcase_10 AC 22 ms
26,880 KB
testcase_11 AC 22 ms
27,136 KB
testcase_12 AC 1,362 ms
84,736 KB
testcase_13 AC 393 ms
48,000 KB
testcase_14 AC 932 ms
68,736 KB
testcase_15 AC 45 ms
30,848 KB
testcase_16 AC 538 ms
53,888 KB
testcase_17 AC 398 ms
48,204 KB
testcase_18 AC 253 ms
43,008 KB
testcase_19 AC 1,638 ms
94,464 KB
testcase_20 AC 1,580 ms
92,160 KB
testcase_21 AC 24 ms
27,520 KB
testcase_22 AC 400 ms
48,384 KB
testcase_23 AC 585 ms
55,552 KB
testcase_24 AC 154 ms
38,528 KB
testcase_25 AC 1,995 ms
108,032 KB
testcase_26 AC 220 ms
40,960 KB
testcase_27 AC 1,418 ms
86,016 KB
testcase_28 AC 1,038 ms
71,296 KB
testcase_29 AC 386 ms
47,872 KB
testcase_30 TLE -
testcase_31 AC 502 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

const int MAX_N = 1000005;
const int M = 5;

vector<int> G[MAX_N];
bool visit[MAX_N];

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n, p;
    cin >> n >> p;
    vector<int> a;
    for(int i = 2; i <= M; i++) a.push_back(i);
    for (int i = 2; i <= n; i++) {
        if(i <= M) continue;
        for (int j = 2*i; j <= n; j += i) {
            G[j].push_back(i);
        }
    }
    queue<int> q;
    q.push(p);
    visit[p] = true;
    int ans = 1;
    while (not q.empty()) {
        const int s = q.front();
        q.pop();
        for(int i = 2*s; i <= n; i += s){
            if (visit[i]) { continue; }
            visit[i] = true;
            q.push(i);
            ans++;
        }
        for(const int to : a){
            if(s % to == 0 && !visit[to]){
                visit[to] = true;
                q.push(to);
                ans++;
            }
        }
        for(const int to : G[s]){
            if (visit[to]) { continue; }
            visit[to] = true;
            q.push(to);
            ans++;
        }
    }
    cout << ans << "\n";
    return 0;
}
0