結果
問題 | No.2829 GCD Divination |
ユーザー | 40947068 |
提出日時 | 2024-08-02 22:21:34 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,890 bytes |
コンパイル時間 | 2,221 ms |
コンパイル使用メモリ | 159,364 KB |
実行使用メモリ | 161,152 KB |
最終ジャッジ日時 | 2024-08-02 22:22:04 |
合計ジャッジ時間 | 27,859 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1,617 ms
161,024 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 20 ms
7,296 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | WA | - |
testcase_22 | AC | 658 ms
72,320 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 99 ms
20,976 KB |
testcase_32 | AC | 840 ms
89,088 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include<iostream> #include<sstream> #include<algorithm> #include<deque> #include<list> #include<map> #include<memory> #include<queue> #include<set> #include<stack> #include<utility> #include<string.h> #include<string> #include<math.h> #include<float.h> #include<stdio.h> #include<vector> #include<iomanip> #include<bitset> //#include<random> using namespace std; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<typename T> inline bool chmin(T &a, T b) { return ((a>b) ? (a = b, true) : (false));} #define rep(i,s,n) for(long long i=s;i<(long long)(n);i++) #define rrep(i,s,n) for(long long i=n-1;i>=s;i--) const long long inf = 1LL<<60; typedef long long ll; typedef long double ld; #define cmp [](pair<ll,ll> a, pair<ll,ll> b){return a.second<b.second;} //pairのsecondでソートsort(p.begin(),p.end(),cmp) typedef pair<long long, long long> P; typedef pair<ll, pair<ll,ll> > PP; #define rll ll,vector<ll>,greater<ll> #define rP P,vector<P>,greater<P> const long double pi = 3.14159265358979; typedef unsigned long long ull; #define vll vector<ll> #define vvll vector<vector<ll>> #define vvch vector<vector<char>> #define vch vector<char> #define rPP PP,vector<PP>,greater<PP> #define vP vector<P> #define vvP vector<vector<P>> #define all(x) x.begin(), x.end() //bitの差集合 S & ~(1<<i) //UNIQUE(x) xをソートして値の被りがないようにする #define UNIQUE(x) sort(all(x)), x.erase(unique(all(x)), x.end()) // エラトステネスの篩 struct Eratosthenes { // テーブル vector<bool> isprime; // 整数 i を割り切る最小の素数 vector<ll> minfactor; //メビウス関数 //約数系包除に使用する //mobius[n] := nに同じ素因数が複数個ある => 0, nの素因数が奇数個 => -1, 素因数が偶数個 => 1 vector<ll> mobius; // コンストラクタで篩を回す Eratosthenes(ll N) : isprime(N+1, true), minfactor(N+1, -1), mobius(N+1, 1) { // 1 は予めふるい落としておく isprime[1] = false; minfactor[1] = 1; // 篩 for (ll p = 2; p <= N; ++p) { // すでに合成数であるものはスキップする if (!isprime[p]) continue; // p についての情報更新 minfactor[p] = p; mobius[p] = -1; // p 以外の p の倍数から素数ラベルを剥奪 for (ll q = p * 2; q <= N; q += p) { // q は合成数なのでふるい落とす isprime[q] = false; // q は p で割り切れる旨を更新 if (minfactor[q] == -1) minfactor[q] = p; if((q/p) % p == 0) mobius[q] = 0; else mobius[q] = -mobius[q]; } } } // 高速素因数分解 // pair (素因子, 指数) の vector を返す vector<P> factorize(ll n) { vector<P> res; while (n > 1) { ll p = minfactor[n]; ll exp = 0; // n で割り切れる限り割る while (minfactor[n] == p) { n /= p; ++exp; } res.emplace_back(p, exp); } return res; } // 高速約数列挙 vector<ll> divisors(ll n) { vector<ll> res({1}); // n を素因数分解 (メンバ関数使用) auto pf = factorize(n); // 約数列挙 for (auto p : pf) { ll s = (ll)res.size(); for (ll i = 0; i < s; ++i) { ll v = 1; for (ll j = 0; j < p.second; ++j) { v *= p.first; res.push_back(res[i] * v); } } } return res; } }; int main() { ll n; cin >> n; Eratosthenes er(n+1); map<ll, ld> dp; dp[1] = 0; //nの約数のみを考えればよく、単純に昇順でいい auto divisors = er.divisors(n); sort(all(divisors)); for(auto divisor : divisors) { if(divisor == 1) continue; auto sub_divisors = er.divisors(divisor); //divisorとのgcdについて全探索? sort(all(sub_divisors)); reverse(all(sub_divisors)); map<ll,ld> cnt; //gcdがkeyとなるものの数 for(auto sub_divisor : sub_divisors) { cnt[sub_divisor] = n / sub_divisor; for(auto p : divisors) { if(p == 1) continue; if(p * sub_divisor > divisor) break; cnt[sub_divisor] -= cnt[p * sub_divisor]; } } ld sum = divisor; for(auto p : cnt) sum += dp[p.first] * p.second; dp[divisor] = sum / (ld)(divisor - 1); } cout << setprecision(30) << dp[n] << endl; }