結果

問題 No.1889 K Consecutive Ks (Hard)
ユーザー suisensuisen
提出日時 2022-03-31 16:34:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 176 ms / 6,000 ms
コード長 1,099 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 117,244 KB
実行使用メモリ 13,792 KB
最終ジャッジ日時 2024-11-17 03:44:22
合計ジャッジ時間 5,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 172 ms
13,660 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 169 ms
13,624 KB
testcase_10 AC 171 ms
13,780 KB
testcase_11 AC 42 ms
5,812 KB
testcase_12 AC 84 ms
8,544 KB
testcase_13 AC 84 ms
8,208 KB
testcase_14 AC 83 ms
8,436 KB
testcase_15 AC 171 ms
13,060 KB
testcase_16 AC 171 ms
13,508 KB
testcase_17 AC 82 ms
8,144 KB
testcase_18 AC 172 ms
13,592 KB
testcase_19 AC 174 ms
13,640 KB
testcase_20 AC 175 ms
13,784 KB
testcase_21 AC 176 ms
13,664 KB
testcase_22 AC 173 ms
13,792 KB
testcase_23 AC 84 ms
8,784 KB
testcase_24 AC 175 ms
13,660 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] = res[i] + res[i] - g[i];
    }
    return res;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    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;
    
    std::cout << (mint(m).pow(n) - inv(f)[n]).val() << std::endl;
    return 0;
}
0