結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 374 ms
15,576 KB
testcase_03 AC 1 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 370 ms
15,508 KB
testcase_10 AC 367 ms
15,472 KB
testcase_11 AC 89 ms
6,764 KB
testcase_12 AC 183 ms
9,528 KB
testcase_13 AC 176 ms
9,268 KB
testcase_14 AC 178 ms
9,472 KB
testcase_15 AC 366 ms
15,140 KB
testcase_16 AC 368 ms
15,524 KB
testcase_17 AC 175 ms
9,152 KB
testcase_18 AC 370 ms
15,436 KB
testcase_19 AC 366 ms
15,532 KB
testcase_20 AC 370 ms
15,700 KB
testcase_21 AC 372 ms
15,700 KB
testcase_22 AC 377 ms
15,700 KB
testcase_23 AC 177 ms
9,948 KB
testcase_24 AC 370 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);
        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