結果

問題 No.1956 猫の額
ユーザー 👑 testestesttestestest
提出日時 2022-04-10 05:19:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 590 bytes
コンパイル時間 5,048 ms
コンパイル使用メモリ 264,976 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-09-20 13:35:31
合計ジャッジ時間 8,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 11 ms
5,632 KB
testcase_02 MLE -
testcase_03 AC 14 ms
6,400 KB
testcase_04 AC 181 ms
14,080 KB
testcase_05 AC 155 ms
13,184 KB
testcase_06 AC 146 ms
12,288 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 27 ms
7,936 KB
testcase_10 MLE -
testcase_11 AC 97 ms
10,368 KB
testcase_12 MLE -
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 22 ms
5,376 KB
testcase_15 AC 11 ms
5,760 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;

int main(){
	int N,C,mod;
	cin >> N >> mod >> C;
	vector<int>A(N);
	int S=0;
	for(int i=0;i<N;i++)cin >> A[i];
	for(int i=0;i<N;i++)S+=A[i];

	modint::set_mod(mod);
	vector<vector<modint>>dp(C+1,vector<modint>(S+1));
	int sum=0;
	dp[0][0]=1;
	for(int i=0;i<N;i++){
		for(int j=min(i,C-1);j>=0;j--){
			for(int k=0;k<=min(sum,S-A[i]);k++)dp[j+1][k+A[i]]+=dp[j][k];
		}
		sum+=A[i];
	}
	for(int i=1;i<=S;i++){
		if(i!=1)cout << ' ';
		cout << dp[C][i].val();
	}
	cout << '\n';
}
0