結果

問題 No.1956 猫の額
ユーザー testestesttestestest
提出日時 2022-05-23 17:44:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 671 bytes
コンパイル時間 3,991 ms
コンパイル使用メモリ 265,364 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-09-20 13:56:48
合計ジャッジ時間 7,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 11 ms
5,632 KB
testcase_02 MLE -
testcase_03 AC 15 ms
6,400 KB
testcase_04 AC 169 ms
13,824 KB
testcase_05 AC 144 ms
13,184 KB
testcase_06 AC 144 ms
12,544 KB
testcase_07 AC 20 ms
5,376 KB
testcase_08 MLE -
testcase_09 AC 27 ms
8,064 KB
testcase_10 MLE -
testcase_11 AC 93 ms
10,496 KB
testcase_12 AC 128 ms
11,264 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 23 ms
5,376 KB
testcase_15 AC 12 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;
	bool invert=false;
	if(C>N/2){
		invert=true;
		C=N-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 << (invert?dp[C][S-i]:dp[C][i]).val();
	}
	cout << '\n';
}
0