結果

問題 No.2829 GCD Divination
ユーザー kotatsugamekotatsugame
提出日時 2024-08-02 21:37:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 820 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 95,452 KB
実行使用メモリ 42,148 KB
最終ジャッジ日時 2024-08-02 21:37:31
合計ジャッジ時間 14,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 255 ms
42,148 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 864 ms
42,112 KB
testcase_05 TLE -
testcase_06 AC 1,611 ms
31,260 KB
testcase_07 AC 1,387 ms
28,480 KB
testcase_08 AC 930 ms
20,000 KB
testcase_09 AC 733 ms
17,288 KB
testcase_10 AC 215 ms
25,068 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 88 ms
10,184 KB
testcase_13 AC 255 ms
37,916 KB
testcase_14 AC 203 ms
26,636 KB
testcase_15 AC 264 ms
19,916 KB
testcase_16 AC 74 ms
11,024 KB
testcase_17 AC 54 ms
7,380 KB
testcase_18 AC 49 ms
6,944 KB
testcase_19 AC 56 ms
8,672 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 304 ms
17,304 KB
testcase_22 AC 103 ms
20,092 KB
testcase_23 AC 439 ms
23,392 KB
testcase_24 AC 252 ms
33,932 KB
testcase_25 AC 298 ms
40,968 KB
testcase_26 AC 136 ms
18,940 KB
testcase_27 AC 415 ms
31,184 KB
testcase_28 AC 48 ms
8,980 KB
testcase_29 AC 211 ms
20,416 KB
testcase_30 AC 428 ms
39,488 KB
testcase_31 AC 29 ms
7,384 KB
testcase_32 AC 150 ms
24,392 KB
testcase_33 AC 155 ms
18,476 KB
testcase_34 AC 356 ms
30,960 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;
}
map<int,long double>memo;
long double solve(int N)
{
	if(N==1)return 0;
	if(memo.find(N)!=memo.end())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