結果

問題 No.1889 K Consecutive Ks (Hard)
ユーザー suisensuisen
提出日時 2022-03-31 16:31:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 385 ms / 6,000 ms
コード長 1,075 bytes
コンパイル時間 2,474 ms
コンパイル使用メモリ 117,240 KB
実行使用メモリ 15,664 KB
最終ジャッジ日時 2024-11-17 03:40:27
合計ジャッジ時間 8,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 384 ms
15,572 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 383 ms
15,504 KB
testcase_10 AC 381 ms
15,564 KB
testcase_11 AC 89 ms
6,636 KB
testcase_12 AC 183 ms
9,432 KB
testcase_13 AC 184 ms
9,272 KB
testcase_14 AC 182 ms
9,476 KB
testcase_15 AC 381 ms
15,268 KB
testcase_16 AC 385 ms
15,524 KB
testcase_17 AC 180 ms
9,152 KB
testcase_18 AC 381 ms
15,436 KB
testcase_19 AC 382 ms
15,664 KB
testcase_20 AC 385 ms
15,572 KB
testcase_21 AC 383 ms
15,572 KB
testcase_22 AC 384 ms
15,576 KB
testcase_23 AC 186 ms
9,948 KB
testcase_24 AC 383 ms
15,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

#include <atcoder/modint>
#include <atcoder/convolution>

using mint = atcoder::modint998244353;

std::vector<mint> inv(const std::vector<mint> &f) {
    const int n = f.size();
    std::vector<mint> res { f[0].inv() };
    for (int k = 1; k < n; k *= 2) {
        const int l = std::min(2 * k + 1, n);
        std::vector<mint> g(f.begin(), f.begin() + l);
        std::vector<mint> h = atcoder::convolution(res, res);
        h.resize(l);
        g = atcoder::convolution(g, h);
        res.resize(l);
        for (int i = 0; i < l; ++i) res[i] = 2 * res[i] - g[i];
    }
    return res;
}

int main() {
    int n, m;
    std::cin >> n >> m;

    std::vector<mint> f(n + 1);
    // Σ[i=1,m] (1-x^i)^(-1) mod x^(n+1)
    for (int i = 1; i <= m; ++i) for (int j = 0; i * j <= n; ++j) {
        ++f[i * j];
    }
    // f *= 1 - x
    for (int i = n - 1; i >= 0; --i) {
        f[i + 1] -= f[i];
    }
    f[0] += 1 - m;

    auto g = atcoder::convolution(inv(f), f);
    
    std::cout << (mint(m).pow(n) - inv(f)[n]).val() << std::endl;
    return 0;
}
0