結果

問題 No.2944 Sigma Partition Problem
ユーザー otoshigootoshigo
提出日時 2024-10-18 22:59:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 479 ms / 4,000 ms
コード長 1,425 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 207,492 KB
実行使用メモリ 254,080 KB
最終ジャッジ日時 2024-10-18 23:00:15
合計ジャッジ時間 15,187 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 441 ms
253,952 KB
testcase_01 AC 461 ms
253,952 KB
testcase_02 AC 447 ms
253,952 KB
testcase_03 AC 446 ms
253,824 KB
testcase_04 AC 434 ms
253,952 KB
testcase_05 AC 447 ms
253,952 KB
testcase_06 AC 460 ms
253,952 KB
testcase_07 AC 448 ms
254,080 KB
testcase_08 AC 461 ms
253,952 KB
testcase_09 AC 443 ms
253,952 KB
testcase_10 AC 466 ms
253,952 KB
testcase_11 AC 446 ms
253,824 KB
testcase_12 AC 443 ms
253,952 KB
testcase_13 AC 479 ms
253,952 KB
testcase_14 AC 469 ms
253,952 KB
testcase_15 AC 450 ms
253,952 KB
testcase_16 AC 469 ms
253,824 KB
testcase_17 AC 474 ms
253,952 KB
testcase_18 AC 469 ms
253,952 KB
testcase_19 AC 448 ms
253,952 KB
testcase_20 AC 447 ms
253,952 KB
testcase_21 AC 453 ms
253,824 KB
testcase_22 AC 444 ms
253,824 KB
testcase_23 AC 479 ms
253,952 KB
testcase_24 AC 451 ms
253,952 KB
testcase_25 AC 472 ms
253,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace std;
using ll=long long;
using mint=atcoder::modint998244353;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

const int MAX=4000;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    // M(n,k)
    vector M(MAX+1,vector<mint>(MAX+1));
    M[0][0]=1;
    for(int i=1;i<=MAX;i++)for(int j=1;j<=MAX;j++){
        M[i][j]+=M[i-1][j-1];
        if(i-j>=0)M[i][j]+=M[i-j][j];
    }
    vector SM(MAX+1,vector<mint>(MAX+1));
    for(int i=0;i<=MAX;i++){
        SM[i][0]=M[i][0];
        for(int j=1;j<=MAX;j++){
            SM[i][j]=SM[i][j-1]+M[i][j];
        }
    }
    // L(n,k)
    vector L(MAX+1,vector<mint>(MAX+1));
    L[0][0]=1;
    for(int i=1;i<=MAX;i++)for(int j=1;j<=MAX;j++){
        L[i][j]+=L[i-1][j-1];
        if(i-j>=0)L[i][j]+=L[i-j][j];
    }
    vector SL(MAX+1,vector<mint>(MAX+1));
    for(int i=0;i<=MAX;i++){
        SL[i][0]=L[i][0];
        for(int j=1;j<=MAX;j++){
            SL[i][j]=SL[i][j-1]+L[i][j];
        }
    }
    int Q;
    cin>>Q;
    while(Q--){
        int t,n,k;
        cin>>t>>n>>k;
        chmin(k,n);
        if(t==1)cout<<SM[n][k].val()<<"\n";
        else cout<<SL[n][k].val()<<"\n";
    }
}
0