結果

問題 No.2944 Sigma Partition Problem
ユーザー otoshigootoshigo
提出日時 2024-10-18 22:56:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,494 bytes
コンパイル時間 2,871 ms
コンパイル使用メモリ 208,128 KB
実行使用メモリ 254,080 KB
最終ジャッジ日時 2024-10-18 22:57:08
合計ジャッジ時間 16,766 ms
ジャッジサーバーID
(参考情報)
judge7 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 489 ms
253,952 KB
testcase_01 AC 456 ms
253,952 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 462 ms
253,952 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
        ll n,k;
        cin>>t>>n>>k;
        if(k>n){
            cout<<0<<"\n";
        }else{
            if(t==1)cout<<SM[n][k].val()<<"\n";
            else cout<<SL[n][k].val()<<"\n";
        }
    }
}
0