結果

問題 No.2829 GCD Divination
ユーザー ooaiuooaiu
提出日時 2024-09-06 16:53:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,437 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 3,444 ms
コンパイル使用メモリ 261,740 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-06 16:53:27
合計ジャッジ時間 12,009 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 43 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 367 ms
6,944 KB
testcase_05 AC 1,437 ms
6,940 KB
testcase_06 AC 1,165 ms
6,944 KB
testcase_07 AC 1,018 ms
6,944 KB
testcase_08 AC 712 ms
6,940 KB
testcase_09 AC 536 ms
6,944 KB
testcase_10 AC 54 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 26 ms
6,944 KB
testcase_13 AC 50 ms
6,940 KB
testcase_14 AC 42 ms
6,940 KB
testcase_15 AC 90 ms
6,948 KB
testcase_16 AC 20 ms
6,940 KB
testcase_17 AC 17 ms
6,944 KB
testcase_18 AC 17 ms
6,944 KB
testcase_19 AC 16 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 131 ms
6,944 KB
testcase_22 AC 21 ms
6,940 KB
testcase_23 AC 204 ms
6,944 KB
testcase_24 AC 54 ms
6,940 KB
testcase_25 AC 50 ms
6,940 KB
testcase_26 AC 29 ms
6,944 KB
testcase_27 AC 123 ms
6,940 KB
testcase_28 AC 13 ms
6,940 KB
testcase_29 AC 62 ms
6,940 KB
testcase_30 AC 95 ms
6,940 KB
testcase_31 AC 7 ms
6,940 KB
testcase_32 AC 27 ms
6,944 KB
testcase_33 AC 36 ms
6,940 KB
testcase_34 AC 96 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define cout std::cout
#define cin std::cin
#define endl '\n'

using ll = long long;

std::vector<ll> divisor(ll n) {
    std::vector<ll> ret;
    for(ll x = 1; x * x <= n; x++) {
        if(n % x == 0) ret.push_back(x);
    }
    for(ll i = (int)ret.size() - (ret.back() * ret.back() == n); i--; ) {
        ret.push_back(n / ret[i]);
    }
    return ret;
}
std::map<ll, double> memo;
double f(ll n) {
    if(n == 1) return 0;
    if(memo.find(n) != memo.end()) {
        return memo[n];
    }
    auto d = divisor(n);
    std::map<ll, ll> mp;
    for(int i = (int)d.size(); i--; ) {
        mp[d[i]] = n / d[i];
        for(int j = 2 * d[i]; j <= n; j += d[i]) {
            if(mp.find(j) != mp.end()) mp[d[i]] -= mp[j];
        }
    }
    double ret = 0;
    for(auto [di, cnt]: mp) {
        if(di != n) ret += (f(di) + 1) * cnt;
    }
    return memo[n] = double(ret + 1)/(n - 1);
}
int main() {
    std::ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n; cin >> n;
    cout << std::setprecision(15) << f(n) << endl;
}
0