結果

問題 No.826 連絡網
ユーザー granddaifukugranddaifuku
提出日時 2020-06-03 17:35:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 2,035 bytes
コンパイル時間 1,620 ms
コンパイル使用メモリ 171,736 KB
実行使用メモリ 7,696 KB
最終ジャッジ日時 2024-05-03 23:41:44
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 9 ms
6,400 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 8 ms
5,760 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 10 ms
6,964 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 13 ms
7,696 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 10 ms
6,528 KB
testcase_28 AC 8 ms
5,888 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 12 ms
7,652 KB
testcase_31 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (int)n; ++i)
#define FOR(i, a, b) for(int i = a; i < (int)b; ++i)
#define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i)

typedef long long ll;
typedef long double ld;

const int Inf = 1e9;
const double EPS = 1e-9;
const int MOD = 1e9 + 7;

class LinearSieve {
    public:
        vector<int> lp, pr;
        LinearSieve() {}
        LinearSieve(int n) {
            lp.resize(n + 1);
            lp[0] = -1, lp[1] = -1;
            init(n);
        }

        void init(int x) {
            FOR (i, 2, x + 1) {
                if (lp[i] == 0) {
                    lp[i] = i;
                    pr.push_back(i);
                }
                for (int j = 0; j < (int)pr.size() && pr[j] <= lp[i] && (ll)i * pr[j] <= x; ++j) {
                    lp[i * pr[j]] = pr[j];
                }
            }
        }

        bool isPrime(int x) {
            return lp[x] == x;
        }

        vector<int> factorList(int x) {
            vector<int> res;
            while (x != 1) {
                res.push_back(lp[x]);
                x /= lp[x];
            }

            return res;
        }

        vector<pair<int, int> > factorize(int x) {
            vector<int> p = factorList(x);
            if (p.size() == 0) return {};
            vector<pair<int, int> > res(1, make_pair(p[0], 0));
            rep (i, p.size()) {
                if (res.back().first == p[i]) {
                    res.back().second++;
                } else {
                    res.emplace_back(p[i], 1);
                }
            }

            return res;
        }
};

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(0);
    int n, p;
    cin >> n >> p;
    LinearSieve ls = LinearSieve(n + 10);
    if (p == 1 || (p > n / 2 && ls.isPrime(p))) {
        cout << 1 << endl;
        return 0;
    }
    int cnt = 1;
    FOR (i, n / 2 + 1, n + 1) {
        if (ls.isPrime(i)) cnt++;
    }
    cout << n - cnt << endl;
    
    return 0;
}

0