結果

問題 No.2857 Div Array
ユーザー soumatsoumat
提出日時 2024-08-25 14:55:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,483 bytes
コンパイル時間 2,581 ms
コンパイル使用メモリ 218,684 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:55:46
合計ジャッジ時間 5,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 144 ms
6,940 KB
testcase_12 AC 32 ms
6,940 KB
testcase_13 AC 13 ms
6,940 KB
testcase_14 AC 135 ms
6,940 KB
testcase_15 AC 16 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 121 ms
6,940 KB
testcase_18 AC 104 ms
6,944 KB
testcase_19 AC 59 ms
6,940 KB
testcase_20 AC 208 ms
6,940 KB
testcase_21 AC 183 ms
6,944 KB
testcase_22 AC 180 ms
6,944 KB
testcase_23 AC 178 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

using mat = vector<vector<ll>>;

ll mod = 998244353;

/// 行列積
mat mat_mul(mat &a, mat &b) {
  mat res(a.size(), vector<ll>(b[0].size()));
  for (int i = 0; i < a.size(); i++) {
    for (int j = 0; j < b[0].size(); j++) {
      for (int k = 0; k < b.size(); k++) {
        (res[i][j] += a[i][k] * b[k][j]) %= mod;
      }
    }
  }
  return res;
}

/// 行列累乗
mat mat_pow(mat a, long long n) {
  mat res(a.size(), vector<ll>(a.size()));
  // 単位行列で初期化
  for (int i = 0; i < a.size(); i++)
    res[i][i] = 1;
  // 繰り返し二乗法
  while (n > 0) {
    if (n & 1) res = mat_mul(a, res);
    a = mat_mul(a, a);
    n >>= 1;
  }
  return res;
}

int main(void) {
    int n,m,k;
    cin >> n >> m >> k;

    map<int,int> mp;
    map<int,int> mp2;
    for (int i = 1; i <= m; i++) {
        if (mp.find(m/i) == mp.end()) mp2[mp.size()] = m/i;
        mp[m/i]++;
    }

    cerr << mp.size() << endl;

    vector<vector<ll>> v(mp.size(),vector<ll>(mp.size()));
    for (int i = 0; i < mp.size(); i++) {
        for (int j = 0; j < mp.size(); j++) {
            if (abs(mp2[i]-mp2[j]) <= k) v[i][j] = mp[mp2[i]];
        }
    }

    auto p = mat_pow(v,n-1);
    ll ans = 0;
    for (int i = 0; i < mp.size(); i++) {
        for (int j = 0; j < mp.size(); j++) { 
            ans += mp[mp2[j]]*p[i][j];
            ans %= mod;
        }
    }

    cout << ans << endl;
    
    return 0;
}
0