結果

問題 No.2829 GCD Divination
ユーザー kotatsugamekotatsugame
提出日時 2024-08-02 21:38:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 805 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 89,048 KB
実行使用メモリ 42,200 KB
最終ジャッジ日時 2024-08-02 21:38:25
合計ジャッジ時間 14,596 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 273 ms
42,200 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 837 ms
42,200 KB
testcase_05 TLE -
testcase_06 AC 1,586 ms
31,268 KB
testcase_07 AC 1,352 ms
28,452 KB
testcase_08 AC 895 ms
20,112 KB
testcase_09 AC 721 ms
17,356 KB
testcase_10 AC 222 ms
24,920 KB
testcase_11 AC 8 ms
6,940 KB
testcase_12 AC 91 ms
10,240 KB
testcase_13 AC 255 ms
38,080 KB
testcase_14 AC 207 ms
26,576 KB
testcase_15 AC 268 ms
20,056 KB
testcase_16 AC 74 ms
10,992 KB
testcase_17 AC 55 ms
7,328 KB
testcase_18 AC 49 ms
6,940 KB
testcase_19 AC 58 ms
8,672 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 313 ms
17,248 KB
testcase_22 AC 108 ms
19,964 KB
testcase_23 AC 443 ms
23,488 KB
testcase_24 AC 261 ms
33,992 KB
testcase_25 AC 277 ms
40,888 KB
testcase_26 AC 139 ms
19,128 KB
testcase_27 AC 410 ms
30,964 KB
testcase_28 AC 50 ms
8,820 KB
testcase_29 AC 213 ms
20,268 KB
testcase_30 AC 413 ms
39,568 KB
testcase_31 AC 30 ms
7,420 KB
testcase_32 AC 152 ms
24,328 KB
testcase_33 AC 156 ms
18,348 KB
testcase_34 AC 362 ms
30,972 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'long double solve(int)':
main.cpp:35:17: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   35 |         for(auto[v,c]:nxt)ans+=solve(v)*c;
      |                 ^

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<map>
#include<cassert>
#include<iomanip>
using namespace std;
int gcd(int a,int b)
{
	while(b)
	{
		int t=a%b;
		a=b;
		b=t;
	}
	return a;
}
long double memo[10000001];
long double solve(int N)
{
	if(N==1)return 0;
	if(memo[N])return memo[N];
	vector<pair<int,int> >nxt;
	{
		vector<int>to(N,1);
		for(int g=2;g<N;g++)if(N%g==0)for(int i=g;i<N;i+=g)to[i]=g;
		sort(to.begin(),to.end());
		for(int v:to)
		{
			if(!nxt.empty()&&nxt.back().first==v)nxt.back().second++;
			else nxt.push_back(make_pair(v,1));
		}
	}
	long double ans=0;
	for(auto[v,c]:nxt)ans+=solve(v)*c;
	ans+=N;
	ans/=N-1;
	return memo[N]=ans;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N;cin>>N;
	cout<<fixed<<setprecision(16)<<solve(N)<<endl;
}
0