結果

問題 No.2857 Div Array
ユーザー t98slidert98slider
提出日時 2024-08-25 14:54:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 5,516 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 210,576 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 14:54:59
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
	if(vec.empty()) return os;
	os << vec[0];
	for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
	return os;
}

template<const unsigned int MOD> struct prime_modint {
	using mint = prime_modint;
	unsigned int v;
	prime_modint() : v(0) {}
	prime_modint(unsigned int a) { a %= MOD; v = a; }
	prime_modint(unsigned long long a) { a %= MOD; v = a; }
	prime_modint(int a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
	prime_modint(long long a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
	static constexpr int mod() { return MOD; }
	mint& operator++() {v++; if(v == MOD)v = 0; return *this;}
	mint& operator--() {if(v == 0)v = MOD; v--; return *this;}
	mint operator++(int) { mint result = *this; ++*this; return result; }
	mint operator--(int) { mint result = *this; --*this; return result; }
	mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; }
	mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; }
	mint& operator*=(const mint& rhs) {
		v = (unsigned int)((unsigned long long)(v) * rhs.v % MOD);
		return *this;
	}
	mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }
	mint operator+() const { return *this; }
	mint operator-() const { return mint() - *this; }
	mint pow(long long n) const {
		assert(0 <= n);
		mint r = 1, x = *this;
		while (n) {
			if (n & 1) r *= x;
			x *= x;
			n >>= 1;
		}
		return r;
	}
	mint inv() const { assert(v); return pow(MOD - 2); }
	friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; }
	friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; }
	friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; }
	friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; }
	friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); }
	friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); }
	friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; }
};
//using mint = prime_modint<1000000007>;
using mint = prime_modint<998244353>;

template <class T, size_t N> struct Matrix {
    std::array<std::array<T, N>, N> A{};
    Matrix() {}
    Matrix(const std::array<std::array<T, N>, N> &M) : A(M){}
    Matrix(const std::vector<std::vector<T>> &M)  {
        for(size_t i = 0; i < N; i++){
            for(size_t j = 0; j < N; j++){
                A[i][j] = M[i][j];
            }
        }
    }
    const std::array<T, N>& operator[](int i) const { return A[i]; }
    std::array<T, N>& operator[](int i) { return A[i]; }

    Matrix& operator+=(const Matrix& rhs) {
        for(size_t i = 0; i < N; i++){
            for(size_t j = 0; j < N; j++){
                A[i][j] += rhs[i][j];
            }
        }
        return *this;
    }
    Matrix& operator-=(const Matrix& rhs) {
        for(size_t i = 0; i < N; i++){
            for(size_t j = 0; j < N; j++){
                A[i][j] -= rhs[i][j];
            }
        }
        return *this;
    }
    Matrix& operator*=(const Matrix& rhs) {
        std::array<std::array<T, N>, N> res{};
        for(size_t i = 0; i < N; i++){
            for(size_t j = 0; j < N; j++){
                for(size_t k = 0; k < N; k++){
                    res[i][j] += A[i][k] * rhs[k][j];
                }
            }
        }
        swap(A, res);
        return *this;
    }
    Matrix& operator+() const { return *this; }
    Matrix& operator-() const { return Matrix() - *this; }
    friend Matrix operator+(const Matrix& lhs, const Matrix& rhs) {
        return Matrix(lhs) += rhs;
    }
    friend Matrix operator-(const Matrix& lhs, const Matrix& rhs) {
        return Matrix(lhs) -= rhs;
    }
    friend Matrix operator*(const Matrix& lhs, const Matrix& rhs) {
        return Matrix(lhs) *= rhs;
    }
    friend bool operator==(const Matrix& lhs, const Matrix& rhs) {
        return (lhs.A == rhs.A);
    }
    friend bool operator!=(const Matrix& lhs, const Matrix& rhs) {
        return (lhs.A != rhs.A);
    }
    Matrix pow(long long v){
        Matrix res, temp = A;
        for(size_t i = 0; i < N; i++)res[i][i] = 1;
        while(v){
            if(v & 1)res *= temp;
            temp *= temp;
            v >>= 1;
        }
        return res;
    }
    friend std::ostream& operator << (std::ostream &os, const Matrix& rhs) noexcept {
        for(size_t i = 0; i < N; i++){
            if(i) os << '\n';
            for(size_t j = 0; j < N; j++){
                os << (j ? " " : "") << rhs[i][j];
            }
        }
        return os;
    }
};

int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);
	int n, m, k;
	cin >> n >> m >> k;
	if(n == 1){
		cout << m << '\n';
		return 0;
	}
	vector<int> c(m), d;
	for(int i = 1; i <= m; i++){
		c[m - i] = m / i;
	}
	d = c;
	d.erase(unique(d.begin(), d.end()), d.end());
	int M = d.size();
	vector<int> cnt(M);
	for(int i = 1, di = M - 1; i <= m; i++){
		while(d[di] > c[m - i]) di--;
		cnt[di]++;
	}
	Matrix<mint, 64> Mt;
	for(int y = 0; y < M; y++){
		for(int x = 0; x < M; x++){
			if(abs(d[y] - d[x]) <= k) Mt[y][x] = cnt[x];
		}
	}
	//cout << Mt << '\n';
	auto B = Mt.pow(n - 1);
	mint ans;
	for(int y = 0; y < M; y++){
		for(int x = 0; x < M; x++){
			ans += cnt[y] * B[y][x];
		}
	}
	cout << ans << '\n';
}
0