結果

問題 No.1889 K Consecutive Ks (Hard)
ユーザー colognecologne
提出日時 2022-03-25 22:37:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 375 ms / 6,000 ms
コード長 1,122 bytes
コンパイル時間 4,917 ms
コンパイル使用メモリ 289,928 KB
実行使用メモリ 11,468 KB
最終ジャッジ日時 2024-10-14 06:34:41
合計ジャッジ時間 10,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 375 ms
11,432 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 367 ms
11,428 KB
testcase_11 AC 85 ms
6,816 KB
testcase_12 AC 173 ms
7,480 KB
testcase_13 AC 93 ms
6,816 KB
testcase_14 AC 175 ms
7,576 KB
testcase_15 AC 191 ms
8,172 KB
testcase_16 AC 370 ms
11,176 KB
testcase_17 AC 85 ms
6,820 KB
testcase_18 AC 361 ms
10,960 KB
testcase_19 AC 369 ms
11,468 KB
testcase_20 AC 372 ms
11,304 KB
testcase_21 AC 375 ms
11,300 KB
testcase_22 AC 372 ms
11,432 KB
testcase_23 AC 183 ms
7,912 KB
testcase_24 AC 372 ms
11,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
#include <atcoder/convolution>
using namespace std;

using Mint = atcoder::modint998244353;

int main()
{
    int N, M;
    cin >> N >> M;
    if (M == 1)
    {
        cout << 1 << endl;
        return 0;
    }
    vector<Mint> C(N + 1, 0);

    for (int i = 2; i <= M; ++i)
    {
        for (int base = 1; base <= N; base += i)
        {
            if (base <= N)
                C[base]++;
            if (base + i - 1 <= N)
                C[base + i - 1]--;
        }
    }
    C.erase(C.begin());
    vector<Mint> D(N + 1, 0);
    D[0] = 1;

    function<void(int, int)> DnC = [&](int L, int R)
    {
        if (L == R)
            return;
        int M = (L + R) / 2;
        DnC(L, M);

        vector<Mint> V(D.begin() + L, D.begin() + M + 1);
        vector<Mint> Co(C.begin(), C.begin() + (R - L));
        vector<Mint> ans = atcoder::convolution(V, Co);
        for (int i = M + 1; i <= R; ++i)
            D[i] += ans[i - (M + 1) + (int)V.size() - 1];

        DnC(M + 1, R);
    };

    DnC(0, N);
    cout << (Mint(M).pow(N) - D.back()).val() << endl;
}
0