結果

問題 No.2944 Sigma Partition Problem
ユーザー nouka28nouka28
提出日時 2024-10-18 22:33:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 4,000 ms
コード長 826 bytes
コンパイル時間 5,517 ms
コンパイル使用メモリ 311,060 KB
実行使用メモリ 191,996 KB
最終ジャッジ日時 2024-10-18 22:52:29
合計ジャッジ時間 10,049 ms
ジャッジサーバーID
(参考情報)
judge7 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
191,864 KB
testcase_01 AC 150 ms
191,996 KB
testcase_02 AC 151 ms
191,868 KB
testcase_03 AC 150 ms
191,992 KB
testcase_04 AC 148 ms
191,868 KB
testcase_05 AC 171 ms
191,872 KB
testcase_06 AC 150 ms
191,868 KB
testcase_07 AC 148 ms
191,868 KB
testcase_08 AC 148 ms
191,992 KB
testcase_09 AC 148 ms
191,868 KB
testcase_10 AC 143 ms
191,868 KB
testcase_11 AC 147 ms
191,872 KB
testcase_12 AC 149 ms
191,868 KB
testcase_13 AC 147 ms
191,868 KB
testcase_14 AC 148 ms
191,868 KB
testcase_15 AC 147 ms
191,868 KB
testcase_16 AC 155 ms
191,868 KB
testcase_17 AC 149 ms
191,996 KB
testcase_18 AC 159 ms
191,864 KB
testcase_19 AC 150 ms
191,868 KB
testcase_20 AC 147 ms
191,868 KB
testcase_21 AC 148 ms
191,868 KB
testcase_22 AC 144 ms
191,868 KB
testcase_23 AC 146 ms
191,996 KB
testcase_24 AC 148 ms
191,868 KB
testcase_25 AC 146 ms
191,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/all>
using namespace atcoder;
using mint=atcoder::modint998244353;

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#define int long long

mint dp1[4009][4009];
mint dp2[4009][4009];

mint dp[4009][4009];

signed main(){
	dp1[0][0]=1;
	for(int i=1;i<=4000;i++){
		for(int j=0;j<=4000;j++)dp1[i][j]=dp1[i-1][j];
		for(int j=0;i+j<=4000;j++)dp1[i][j+i]+=dp1[i][j];
	}

    for(int i=1;i<=4000;i++){
		for(int j=0;j<=4000;j++){
			for(int k=1;i*k+j<=4000;k++){
				dp2[i][i*k+j]+=dp1[i-1][j];
			}
		}
    }

	for(int i=0;i<=4000;i++){
		for(int j=0;j<=4000;j++){
			dp2[i+1][j]+=dp2[i][j];
		}
	}

	
	int Q;cin>>Q;
	while(Q--){
		int t,n,k;cin>>t>>n>>k;

		if(t==1){
			cout<<dp1[k][n].val()<<endl;
		}else{
			cout<<dp2[k][n].val()<<endl;
		}
	}
}
0