結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
50,432 KB
testcase_01 AC 20 ms
50,432 KB
testcase_02 AC 19 ms
50,304 KB
testcase_03 AC 21 ms
50,688 KB
testcase_04 AC 22 ms
50,688 KB
testcase_05 AC 20 ms
50,560 KB
testcase_06 AC 20 ms
50,432 KB
testcase_07 AC 21 ms
50,688 KB
testcase_08 AC 21 ms
50,560 KB
testcase_09 AC 22 ms
50,688 KB
testcase_10 AC 20 ms
50,304 KB
testcase_11 AC 21 ms
50,560 KB
testcase_12 AC 408 ms
90,844 KB
testcase_13 AC 136 ms
66,280 KB
testcase_14 AC 297 ms
80,308 KB
testcase_15 AC 36 ms
53,888 KB
testcase_16 AC 195 ms
70,260 KB
testcase_17 AC 144 ms
66,280 KB
testcase_18 AC 113 ms
62,680 KB
testcase_19 AC 479 ms
97,296 KB
testcase_20 AC 445 ms
96,392 KB
testcase_21 AC 22 ms
50,944 KB
testcase_22 AC 143 ms
66,660 KB
testcase_23 AC 205 ms
71,172 KB
testcase_24 AC 80 ms
59,460 KB
testcase_25 AC 551 ms
106,172 KB
testcase_26 AC 93 ms
61,140 KB
testcase_27 AC 416 ms
92,276 KB
testcase_28 AC 297 ms
82,364 KB
testcase_29 AC 132 ms
66,152 KB
testcase_30 AC 537 ms
106,292 KB
testcase_31 AC 186 ms
69,500 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