結果

問題 No.2829 GCD Divination
ユーザー HIcoderHIcoder
提出日時 2024-08-25 16:24:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,582 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 137,860 KB
実行使用メモリ 468,620 KB
最終ジャッジ日時 2024-08-25 16:24:07
合計ジャッジ時間 5,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,880 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;
const int MAXN=3*1000000;


vector<pair<ll,ll>> calc_gcd(ll n){
    vector<ll> f;
    for(ll v=1;v*v<=n;v++){
        if(n%v==0){
            f.push_back(v);
            if(n/v!=v){
                f.push_back(n/v);
            }
        }
    }
    sort(f.rbegin(),f.rend());
    map<ll,ll> cnt;
    vector<pair<ll,ll>> ans;

    for(ll v:f){
        cnt[v]=n/v;//1~nまでの数でvの倍数の個数
        for(ll t=2*v;t<=n;t+=v){
            //約数の倍数は除外
            cnt[v]-=cnt[t];
            
        }
        ans.emplace_back(v,cnt[v]);
    }
    return ans;
}

int main(){
    ll N;
    cin>>N;
    vector<ll> factor;
    for(ll d=1;d*d<=N;d++){
        if(N%d==0){
            factor.push_back(d);
            if(N/d!=d){
                factor.push_back(N/d);
            }
        }
    }

    sort(factor.begin(),factor.end());

    vector<double> dp(N+1,0);

    for(ll v:factor){
        if(v==1) continue;

        auto array=calc_gcd(v);
        double d=0;
        for(auto [p,cnt]:array){
            if(p==v) continue;
            d+=(1.0*cnt/v)*dp[p];
        }

        d+=1;
        d=(d*v)/(v-1);
        dp[v]=d;
    }

    printf("%.10f\n",dp[N]);

}
0