結果

問題 No.1653 Squarefree
ユーザー scol_kpscol_kp
提出日時 2021-08-21 14:41:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,254 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 200,728 KB
実行使用メモリ 15,828 KB
最終ジャッジ日時 2024-04-23 05:59:14
合計ジャッジ時間 20,368 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 661 ms
15,584 KB
testcase_14 AC 669 ms
15,516 KB
testcase_15 AC 672 ms
15,504 KB
testcase_16 AC 674 ms
15,692 KB
testcase_17 AC 691 ms
15,472 KB
testcase_18 AC 672 ms
15,580 KB
testcase_19 AC 670 ms
15,668 KB
testcase_20 AC 675 ms
15,596 KB
testcase_21 AC 667 ms
15,624 KB
testcase_22 AC 672 ms
15,828 KB
testcase_23 AC 672 ms
15,440 KB
testcase_24 WA -
testcase_25 AC 679 ms
15,700 KB
testcase_26 AC 695 ms
15,508 KB
testcase_27 AC 677 ms
15,556 KB
testcase_28 AC 664 ms
15,292 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 665 ms
15,580 KB
testcase_32 AC 696 ms
15,444 KB
testcase_33 WA -
testcase_34 AC 676 ms
15,580 KB
testcase_35 AC 669 ms
15,668 KB
testcase_36 AC 9 ms
7,888 KB
testcase_37 WA -
testcase_38 AC 8 ms
7,864 KB
testcase_39 AC 8 ms
7,940 KB
testcase_40 AC 9 ms
8,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define FASTIO
using namespace std;

using ll = long long;
using Vi = std::vector<int>;
using Vl = std::vector<ll>;
using Pii = std::pair<int, int>;
using Pll = std::pair<ll, ll>;
template <class T>
using min_priority_queue = std::priority_queue<T, std::vector<T>, std::greater<T>>;

constexpr int I_INF = std::numeric_limits<int>::max();
constexpr ll L_INF = std::numeric_limits<ll>::max();

template <typename T1, typename T2>
inline bool chmin(T1& a, const T2& b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template <typename T1, typename T2>
inline bool chmax(T1& a, const T2& b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}

template <std::ostream& os = std::cout>
class Prints {
private:
    class __Prints {
    public:
        __Prints(const char* sep, const char* term) : sep(sep), term(term) {}
        template <class... Args>
#if __cplusplus >= 201703L
        auto operator()(const Args&... args) const -> decltype((os << ... << std::declval<Args>()), void()) {
#else
        void operator()(const Args&... args) const {
#endif
            print(args...);
        }
        template <typename T>
#if __cplusplus >= 201703L
        auto pvec(const T& vec, size_t sz) const -> decltype(os << std::declval<decltype(std::declval<T>()[0])>(), void()) {
#else
        void pvec(const T& vec, size_t sz) const {
#endif
            for (size_t i = 0; i < sz; i++)
                os << vec[i] << (i == sz - 1 ? term : sep);
        }
        template <typename T>
#if __cplusplus >= 201703L
        auto pmat(const T& mat, size_t h, size_t w) const -> decltype(os << std::declval<decltype(std::declval<T>()[0][0])>(), void()) {
#else
        void pmat(const T& mat, size_t h, size_t w) const {
#endif
            for (size_t i = 0; i < h; i++)
                for (size_t j = 0; j < w; j++)
                    os << mat[i][j] << (j == w - 1 ? term : sep);
        }

    private:
        const char *sep, *term;
        void print() const { os << term; }
        void print_rest() const { os << term; }
        template <class T, class... Tail>
        void print(const T& head, const Tail&... tail) const { os << head, print_rest(tail...); }
        template <class T, class... Tail>
        void print_rest(const T& head, const Tail&... tail) const { os << sep << head, print_rest(tail...); }
    };

public:
    Prints() {}
    __Prints operator()(const char* sep = " ", const char* term = "\n") const { return __Prints(sep, term); }
};

Prints<> prints;
Prints<std::cerr> prints_err;

//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

void solve() {
    ll L, R;
    cin >> L >> R;
    ++R;
    int LIM = pow(R, 1.0 / 3.0) + 1;
    std::vector<int> mpf(LIM + 1);
    std::vector<int> primes;
    for (int i = 2; i <= LIM; i++) {
        if (mpf[i] == 0) {
            mpf[i] = i;
            primes.emplace_back(i);
        }
        for (const auto& p : primes) {
            if (i * p > LIM || p > mpf[i]) break;
            mpf[i * p] = p;
        }
    }
    Vl A(R - L);
    for (ll i = 0; i < R - L; i++) {
        A[i] = L + i;
    }
    for (auto p : primes) {
        for (ll i = (p - L % p) % p; i < R - L; i += p) {
            A[i] /= p;
            if (A[i] % p == 0) A[i] = -1;
        }
    }
    ll ans = 0;
    for (ll i = 0; i < R - L; i++) {
        if (A[i] == -1) continue;
        ll left = 2, right = R;
        while (right - left > 1) {
            ll mid = (left + right) >> 1;
            if (mid <= A[i] / mid) {
                left = mid;
            } else {
                right = mid;
            }
        }
        if (A[i] != left) ++ans;
    }
    prints()(ans);
}

//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

int main() {
#ifdef FASTIO
    std::cin.tie(nullptr), std::cout.tie(nullptr);
    std::ios::sync_with_stdio(false);
#endif
#ifdef FILEINPUT
    std::ifstream ifs("./in_out/input.txt");
    std::cin.rdbuf(ifs.rdbuf());
#endif
#ifdef FILEOUTPUT
    std::ofstream ofs("./in_out/output.txt");
    std::cout.rdbuf(ofs.rdbuf());
#endif
    std::cout << std::setprecision(18) << std::fixed;
    solve();
    std::cout << std::flush;
    return 0;
}
0