結果

問題 No.2944 Sigma Partition Problem
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-19 22:05:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 4,000 ms
コード長 1,161 bytes
コンパイル時間 2,445 ms
コンパイル使用メモリ 207,572 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-10-19 22:05:47
合計ジャッジ時間 7,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
65,920 KB
testcase_01 AC 153 ms
65,792 KB
testcase_02 AC 149 ms
65,920 KB
testcase_03 AC 149 ms
65,920 KB
testcase_04 AC 154 ms
65,920 KB
testcase_05 AC 152 ms
65,920 KB
testcase_06 AC 151 ms
65,920 KB
testcase_07 AC 155 ms
65,920 KB
testcase_08 AC 153 ms
65,920 KB
testcase_09 AC 151 ms
65,920 KB
testcase_10 AC 156 ms
65,920 KB
testcase_11 AC 153 ms
65,920 KB
testcase_12 AC 153 ms
65,792 KB
testcase_13 AC 153 ms
65,920 KB
testcase_14 AC 152 ms
65,920 KB
testcase_15 AC 151 ms
65,920 KB
testcase_16 AC 152 ms
65,792 KB
testcase_17 AC 155 ms
65,920 KB
testcase_18 AC 148 ms
65,792 KB
testcase_19 AC 153 ms
65,920 KB
testcase_20 AC 154 ms
65,920 KB
testcase_21 AC 152 ms
65,920 KB
testcase_22 AC 150 ms
65,792 KB
testcase_23 AC 152 ms
65,920 KB
testcase_24 AC 152 ms
65,920 KB
testcase_25 AC 155 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>

using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;

vector<vector<mint>> partition(ll n, ll m){
    vector res(n+1, vector<mint>(m+1));
    res[0][0] = 1;

    for (int i=0; i<=n; i++){
        for (int j=1; j<=m; j++){
            res[i][j] = res[i][j-1];
            if (i >= j) res[i][j] += res[i-j][j];
        }
    }
    return res;
}

vector<vector<mint>> partition2(ll n, ll m){
    vector res(n+1, vector<mint>(m+1));
    res[0][0] = 1;

    for (int i=0; i<=n; i++){
        for (int j=1; j<=m; j++){
            res[i][j] = res[i][j-1];
            if (i >= j) res[i][j] += res[i-j][j];
        }
    }
    return res;
}

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

    /*
       M(i, j) = iの分割で最大値がjのもの
       M(i, j) = sum_{k=0}^{i/j} M(i-kj, j-1)
               = L(i, j)
    */
    int N=4000, M=4000;
    vector<vector<mint>> a;
    a = partition(N, M);

    int Q, t, x, y;
    cin >> Q;
    while(Q--){
        cin >> t >> x >> y;
        cout << a[x][y].val() << endl;
    }

    return 0;
}
0