結果

問題 No.2552 Not Coprime, Not Divisor
ユーザー coindarwcoindarw
提出日時 2024-02-11 14:20:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,386 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 253,068 KB
実行使用メモリ 11,180 KB
最終ジャッジ日時 2024-09-28 17:30:57
合計ジャッジ時間 5,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
11,000 KB
testcase_01 AC 150 ms
11,000 KB
testcase_02 AC 77 ms
11,060 KB
testcase_03 AC 148 ms
10,984 KB
testcase_04 AC 152 ms
11,012 KB
testcase_05 AC 37 ms
11,180 KB
testcase_06 AC 160 ms
11,008 KB
testcase_07 AC 182 ms
11,040 KB
testcase_08 AC 126 ms
11,004 KB
testcase_09 AC 186 ms
11,068 KB
testcase_10 AC 68 ms
11,084 KB
testcase_11 AC 110 ms
11,032 KB
testcase_12 AC 183 ms
11,068 KB
testcase_13 AC 83 ms
11,076 KB
testcase_14 AC 60 ms
11,108 KB
testcase_15 AC 13 ms
11,040 KB
testcase_16 AC 14 ms
11,148 KB
testcase_17 AC 53 ms
11,000 KB
testcase_18 AC 13 ms
11,028 KB
testcase_19 AC 13 ms
11,068 KB
testcase_20 AC 13 ms
11,004 KB
testcase_21 AC 13 ms
11,156 KB
testcase_22 AC 13 ms
11,044 KB
testcase_23 AC 12 ms
11,004 KB
testcase_24 AC 13 ms
10,972 KB
testcase_25 AC 14 ms
10,992 KB
testcase_26 AC 12 ms
11,040 KB
testcase_27 AC 13 ms
11,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using ll = long long;
#define rep(i, n) for (int i = 0, i##_len = (n); i < i##_len; ++i)
#define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; --i)
#define all(v) begin(v), end(v)
using namespace std;

vector<int> min_pf;

void prime_factorize_init(int n) {
    min_pf.resize(n + 1, 0);
    for (int i = 2; i <= n; i++) {
        if (min_pf.at(i) == 0) {
            for (int mul = i; mul <= n; mul += i) {
                min_pf.at(mul) = i;
            }
        }
    }
}

vector<int> prime_factorize(int n) {
    vector<int> res;
    if (n <= 1) return res;
    while (n != 1) {
        res.push_back(min_pf.at(n));
        n /= min_pf.at(n);
    }
    res.erase(unique(res.begin(), res.end()), res.end());
    return res;
}

constexpr int N = 1000'000;
int main() {
    prime_factorize_init(N);

    int n;
    cin >> n;

    vector<int> cnt(N + 1);

    ll ans = ll(n) * (n - 1) / 2 - (n - 1);
    for (int i = n; i > 1; --i) {
        ans -= (n / i) - 1;

        auto pf = prime_factorize(i);
        ll x = 0;
        for (int S = 0; S < (1 << pf.size()); ++S) {
            int mul = 1;
            for (int i = 0; i < pf.size(); ++i)
                if (S >> i & 1) mul *= pf[i];

            if (__builtin_parity(S)) x -= cnt[mul];
            else x += cnt[mul];
            cnt[mul]++;
        }
        ans -= x;
    }

    cout << ans << endl;
}
0