結果

問題 No.826 連絡網
ユーザー parukiparuki
提出日時 2019-05-07 08:08:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 1,715 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 177,152 KB
実行使用メモリ 106,300 KB
最終ジャッジ日時 2024-11-24 02:37:39
合計ジャッジ時間 8,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
50,432 KB
testcase_01 AC 40 ms
50,304 KB
testcase_02 AC 33 ms
50,432 KB
testcase_03 AC 34 ms
50,688 KB
testcase_04 AC 33 ms
50,816 KB
testcase_05 AC 33 ms
50,432 KB
testcase_06 AC 33 ms
50,560 KB
testcase_07 AC 34 ms
50,688 KB
testcase_08 AC 33 ms
50,432 KB
testcase_09 AC 36 ms
50,816 KB
testcase_10 AC 32 ms
50,304 KB
testcase_11 AC 34 ms
50,688 KB
testcase_12 AC 436 ms
90,856 KB
testcase_13 AC 150 ms
66,156 KB
testcase_14 AC 320 ms
80,308 KB
testcase_15 AC 53 ms
53,888 KB
testcase_16 AC 215 ms
70,224 KB
testcase_17 AC 160 ms
66,280 KB
testcase_18 AC 134 ms
62,680 KB
testcase_19 AC 515 ms
97,292 KB
testcase_20 AC 491 ms
96,396 KB
testcase_21 AC 34 ms
50,944 KB
testcase_22 AC 164 ms
66,668 KB
testcase_23 AC 220 ms
71,172 KB
testcase_24 AC 98 ms
59,492 KB
testcase_25 AC 622 ms
106,296 KB
testcase_26 AC 109 ms
61,008 KB
testcase_27 AC 465 ms
92,016 KB
testcase_28 AC 345 ms
82,368 KB
testcase_29 AC 162 ms
66,148 KB
testcase_30 AC 613 ms
106,300 KB
testcase_31 AC 192 ms
69,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define MT make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define RT return
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;
using vll = vector<ll>;

vector<int> sieve(int n) {
    vector<bool> f(n + 1);
    for (int i = 3; i <= n; i += 2) f[i] = 1;
    for (int i = 3; i <= sqrt(n); i += 2) if (f[i]) for (int j = i * 3; j <= n; j += i) f[j] = 0;
    vector<int> res;
    if (n >= 2)res.push_back(2);
    for (int i = 3; i <= n; i += 2) if (f[i]) res.push_back(i);
    return res;
}

vi ps[1000006], qs[1000006];
int vp[1000006], vq[1000006];

void solve() {
    int N, P;
    cin >> N >> P;
    auto primes = sieve(N);

    each(p, primes) {
        for (int i = 1; i*p <= N; ++i) {
            ps[i*p].push_back(p);
            qs[p].push_back(i*p);
        }
    }

    int ans = 0;
    queue<int> Q;
    Q.push(P);
    vp[P] = 1;
    while (!Q.empty()) {
        int n = Q.front();
        Q.pop();
        ans++;
        each(p, ps[n]) {
            if (!vq[p]++) {
                each(m, qs[p]) {
                    if (!vp[m]++) {
                        Q.push(m);
                    }
                }
            }
        }
    }

    cout << ans << endl;
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout << fixed << setprecision(15);
	solve();
	return 0;
}
0