結果

問題 No.2857 Div Array
ユーザー ayataka5ayataka5
提出日時 2024-08-25 16:17:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,243 bytes
コンパイル時間 2,879 ms
コンパイル使用メモリ 254,604 KB
実行使用メモリ 813,960 KB
最終ジャッジ日時 2024-08-25 16:17:19
合計ジャッジ時間 6,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

const long long mod = 998244353;

template< typename T >
vector< pair< pair< T, T >, T > > quotient_range(T N) {
  T M;
  vector< pair< pair< T, T >, T > > ret;
  for(M = 1; M * M <= N; M++) {
    ret.emplace_back(make_pair(M, M), N / M);
  }
  for(T i = M; i >= 1; i--) {
    T L = N / (i + 1) + 1;
    T R = N / i;
    if(L <= R && ret.back().first.second < L) ret.emplace_back(make_pair(L, R), N / L);
  }
  return ret;
}

int main() {
    int N, M, K;
    cin >> N >> M >> K;
    auto range = quotient_range(M);
    vector dp(N, vector(size(range), 0LL));
    for(int i = 0; i < size(range); i++) {
        dp[0][i] = (range[i].first.second - range[i].first.first + 1);
    }
    for(int i = 0; i+1 < N; i++) {
        for(int j = 0; j < size(range); j++) {
            for(int nj = 0; nj < size(range); nj++) {
                if(K < abs(range[j].second-range[nj].second)) continue;
                dp[i+1][nj] = (dp[i+1][nj] + ((range[nj].first.second - range[nj].first.first + 1) * dp[i][j]) % mod) % mod;
            }
        }
    }
    long long ans(0LL);
    for(int i = 0; i < size(range); i++) {
        ans = (ans + dp[N-1][i]) % mod;
    }
    cout << ans << endl;
    return 0;
}
0