結果

問題 No.2215 Slide Subset Sum
ユーザー kmjpkmjp
提出日時 2023-02-10 22:46:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,571 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 203,468 KB
実行使用メモリ 574,140 KB
最終ジャッジ日時 2024-07-07 16:50:06
合計ジャッジ時間 24,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 570 ms
321,128 KB
testcase_01 AC 241 ms
6,816 KB
testcase_02 AC 831 ms
324,312 KB
testcase_03 AC 837 ms
324,444 KB
testcase_04 AC 818 ms
322,808 KB
testcase_05 AC 2 ms
7,392 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
7,516 KB
testcase_09 AC 2 ms
7,392 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
7,908 KB
testcase_13 AC 3 ms
8,036 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
7,520 KB
testcase_16 AC 4 ms
8,420 KB
testcase_17 AC 863 ms
433,408 KB
testcase_18 AC 782 ms
372,924 KB
testcase_19 AC 820 ms
325,900 KB
testcase_20 AC 815 ms
323,160 KB
testcase_21 AC 793 ms
328,336 KB
testcase_22 AC 696 ms
348,364 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 787 ms
351,540 KB
testcase_27 AC 48 ms
28,132 KB
testcase_28 AC 110 ms
94,412 KB
testcase_29 AC 63 ms
33,388 KB
testcase_30 AC 427 ms
185,588 KB
testcase_31 AC 361 ms
242,384 KB
testcase_32 AC 73 ms
35,144 KB
testcase_33 AC 584 ms
271,036 KB
testcase_34 AC 626 ms
371,120 KB
testcase_35 AC 186 ms
105,556 KB
testcase_36 AC 202 ms
102,016 KB
testcase_37 AC 600 ms
321,204 KB
testcase_38 AC 339 ms
322,704 KB
testcase_39 AC 275 ms
6,944 KB
testcase_40 AC 267 ms
6,940 KB
testcase_41 AC 3 ms
6,944 KB
testcase_42 AC 689 ms
321,104 KB
testcase_43 AC 815 ms
324,344 KB
testcase_44 AC 816 ms
324,468 KB
testcase_45 AC 843 ms
481,036 KB
testcase_46 AC 877 ms
479,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,M,K;
int A[402020];

ll L[404040][101];
ll R[404040][101];

const ll mo=998244353;
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>K;
	FOR(i,N) cin>>A[i];
	
	if(M==1) {
		FOR(i,N) {
			cout<<(A[i]==0)<<endl;
		}
		return;
	}
	
	int ON=N;
	N=(N+M-1)/M*M;
	FOR(i,N) {
		if(i%M==0) {
			ZERO(L[i]);
			L[i][0]=1;
		}
		FOR(j,K) {
			(L[i+1][j]+=L[i][j])%=mo;;
			(L[i+1][(j+A[i])%K]+=L[i][j])%=mo;
		}
	}
	for(i=N;i>=1;i--) {
		if(i%M==0) {
			ZERO(R[i]);
			R[i][0]=1;
		}
		FOR(j,K) {
			(R[i-1][j]+=R[i][j])%=mo;;
			(R[i-1][(j+A[i-1])%K]+=R[i][j])%=mo;
		}
	}
	for(i=0;i+M<=ON;i++) {
		ll ret=mo-1;
		if(i%M==0) {
			FOR(j,K) ret+=L[i+1][j]*R[i+1][(K-j)%K]%mo;
		}
		else {
			FOR(j,K) ret+=R[i][j]*L[i+M][(K-j)%K]%mo;
		}
		cout<<ret%mo<<endl;
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0