結果
問題 | No.2576 LCM Pattern |
ユーザー | miscalc |
提出日時 | 2023-12-06 13:54:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 4,721 bytes |
コンパイル時間 | 4,949 ms |
コンパイル使用メモリ | 277,436 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-27 01:22:28 |
合計ジャッジ時間 | 5,232 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ld = long double; using ull = unsigned long long; using pll = pair<ll, ll>; using tlll = tuple<ll, ll, ll>; constexpr ll INF = 1LL << 60; template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;} template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;} ll safemod(ll A, ll M) {ll res = A % M; if (res < 0) res += M; return res;} ll divfloor(ll A, ll B) {if (B < 0) A = -A, B = -B; return (A - safemod(A, B)) / B;} ll divceil(ll A, ll B) {if (B < 0) A = -A, B = -B; return divfloor(A + B - 1, B);} ll pow_ll(ll A, ll B) {if (A == 0 || A == 1) {return A;} if (A == -1) {return B & 1 ? -1 : 1;} ll res = 1; for (int i = 0; i < B; i++) {res *= A;} return res;} ll mul_limited(ll A, ll B, ll M = INF) { return B == 0 ? 0 : A > M / B ? M : A * B; } ll pow_limited(ll A, ll B, ll M = INF) { if (A == 0 || A == 1) {return A;} ll res = 1; for (int i = 0; i < B; i++) {if (res > M / A) return M; res *= A;} return res;} template<class T> void unique(vector<T> &V) {V.erase(unique(V.begin(), V.end()), V.end());} template<class T> void sortunique(vector<T> &V) {sort(V.begin(), V.end()); V.erase(unique(V.begin(), V.end()), V.end());} #define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false) template<class T> void printvec(const vector<T> &V) {int _n = V.size(); for (int i = 0; i < _n; i++) cout << V[i] << (i == _n - 1 ? "" : " ");cout << '\n';} template<class T> void printvect(const vector<T> &V) {for (auto v : V) cout << v << '\n';} template<class T> void printvec2(const vector<vector<T>> &V) {for (auto &v : V) printvec(v);} //* #include <atcoder/all> using namespace atcoder; using mint = modint998244353; //using mint = modint1000000007; //using mint = modint; //*/ // https://nyaannyaan.github.io/library/multiplicative-function/divisor-multiple-transform.hpp.html struct ZetaMobiusDivisorMultiple { ll n; vector<ll> ds, ps; ZetaMobiusDivisorMultiple() {} ZetaMobiusDivisorMultiple(ll n) : n(n) { for (ll d = 1; d * d <= n; d++) { if (n % d == 0) { ds.emplace_back(d); if (d * d != n) ds.emplace_back(n / d); } } sort(ds.begin(), ds.end()); for (ll p = 2; p * p <= n; p++) { if (n % p == 0) { ps.emplace_back(p); while (n % p == 0) n /= p; } } if (n != 1) ps.emplace_back(n); } // d から f(d) を計算する関数を受け取って、実際に全部の d について計算した map を返す template<class T> map<ll, T> func_to_map(const function<T(ll)> &f) const { map<ll, T> res; for (auto d : ds) res[d] = f(d); return res; } // ζa(n) = Σ{d | n} a(d) template<class T> map<ll, T> zeta_divisor(const map<ll, T> &A) const { map<ll, T> B(A); for (auto &p : ps) { for (auto &d : ds) { if (d > n / p) break; if (n % (d * p) == 0) B[d * p] += B[d]; } } return B; } // μ は ζ の逆変換 // μa(n) = Σ{d | n} μ(n/d)a(d) cf. メビウスの反転公式 template<class T> map<ll, T> mobius_divisor(const map<ll, T> &A) const { map<ll, T> B(A); for (auto &p : ps) { for (int i = (int)ds.size() - 1; i >= 0; i--) { ll d = ds[i]; if (d > n / p) continue; if (n % (d * p) == 0) B[d * p] -= B[d]; } } return B; } // ζ'a(n) = Σ{n | m} a(m) template<class T> map<ll, T> zeta_multiple(const map<ll, T> &A) const { map<ll, T> B(A); for (auto &p : ps) { for (int i = (int)ds.size() - 1; i >= 0; i--) { ll d = ds[i]; if (d > n / p) continue; if (n % (d * p) == 0) B[d] += B[d * p]; } } return B; } // μ' は ζ' の逆変換 // μ'a(n) = Σ{n | m} μ(m/n)g(m) template<class T> map<ll, T> mobius_multiple(const map<ll, T> &A) const { map<ll, T> B(A); for (auto &p : ps) { for (auto &d : ds) { if (d > n / p) break; if (n % (d * p) == 0) B[d] -= B[d * p]; } } return B; } }; int main() { ll N, M; cin >> N >> M; ZetaMobiusDivisorMultiple zmdm(M); map<ll, mint> sigma = zmdm.zeta_divisor(zmdm.func_to_map<mint>([&](ll) -> mint { return 1; })); map<ll, mint> res = zmdm.mobius_divisor(zmdm.func_to_map<mint>([&](ll d) -> mint { return sigma[d].pow(N); })); mint ans = res[M]; cout << ans.val() << endl; }