結果

問題 No.2857 Div Array
ユーザー tottoripapertottoripaper
提出日時 2024-08-27 17:19:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 2,181 bytes
コンパイル時間 2,816 ms
コンパイル使用メモリ 211,956 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-27 17:20:04
合計ジャッジ時間 3,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 25 ms
6,944 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 23 ms
6,940 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 22 ms
6,944 KB
testcase_18 AC 19 ms
6,940 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 31 ms
6,940 KB
testcase_21 AC 32 ms
6,940 KB
testcase_22 AC 32 ms
6,940 KB
testcase_23 AC 32 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = std::int64_t;
using T = std::tuple<int, int, int>;
using Matrix = std::vector<std::vector<ll>>;

const ll MOD = 998244353;

Matrix matPow(Matrix A, int n){
    auto d = A.size();
    Matrix R(d, std::vector<ll>(d, 0));
    for(int i=0;i<d;i++){
        R[i][i] = 1;
    }

    while(n > 0){
        if(n & 1){
            Matrix M(d, std::vector<ll>(d, 0));
            for(int i=0;i<d;i++){
                for(int j=0;j<d;j++){
                    for(int k=0;k<d;k++){
                        M[i][j] += R[i][k] * A[k][j] % MOD;
                        if(M[i][j] >= MOD){M[i][j] -= MOD;}
                    }
                }
            }
            R = std::move(M);
        }

        Matrix M(d, std::vector<ll>(d, 0));
        for(int i=0;i<d;i++){
            for(int j=0;j<d;j++){
                for(int k=0;k<d;k++){
                    M[i][j] += A[i][k] * A[k][j] % MOD;
                    if(M[i][j] >= MOD){M[i][j] -= MOD;}
                }
            }
        }
        A = std::move(M);
        n /= 2;
    }

    return R;
}

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

    int N, M, K;
    std::cin >> N >> M >> K;

    std::vector<int> Q, L, R;
    {
        int q = 1;
        int l = M / (q + 1);
        int r = M / q;
        while(true){
            Q.emplace_back(q);
            L.emplace_back(l);
            R.emplace_back(r);
            if(q == M){break;}
            q = M / l;
            l = M / (q + 1);
            r = M / q;
        }
    }

    Matrix T(Q.size(), std::vector<ll>(Q.size(), 0ll));

    for(int i=0;i<Q.size();i++){
        int l = std::lower_bound(std::begin(Q), std::end(Q), Q[i] - K) - std::begin(Q);
        int r = std::upper_bound(std::begin(Q), std::end(Q), Q[i] + K) - std::begin(Q);
        for(int j=l;j<r;j++){
            T[i][j] = (R[i] - L[i]) % MOD;
        }
    }

    Matrix TK = matPow(T, N - 1);

    ll res = 0;
    for(int i=0;i<Q.size();i++){
        for(int j=0;j<Q.size();j++){
            res += TK[i][j] * (R[j] - L[j]) % MOD;
            if(res >= MOD){res -= MOD;}
        }
    }

    std::cout << res << std::endl;
}
0