結果

問題 No.2215 Slide Subset Sum
ユーザー kmjpkmjp
提出日時 2023-02-10 22:45:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,599 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 202,620 KB
実行使用メモリ 574,180 KB
最終ジャッジ日時 2024-07-07 16:49:18
合計ジャッジ時間 25,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 598 ms
322,660 KB
testcase_01 WA -
testcase_02 AC 836 ms
322,320 KB
testcase_03 AC 849 ms
322,636 KB
testcase_04 AC 836 ms
322,908 KB
testcase_05 AC 3 ms
7,648 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 893 ms
431,104 KB
testcase_18 AC 831 ms
372,636 KB
testcase_19 AC 862 ms
326,676 KB
testcase_20 AC 710 ms
324,796 KB
testcase_21 AC 819 ms
323,584 KB
testcase_22 AC 724 ms
348,004 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 944 ms
509,424 KB
testcase_26 AC 744 ms
350,620 KB
testcase_27 AC 48 ms
30,108 KB
testcase_28 AC 107 ms
96,288 KB
testcase_29 AC 61 ms
33,468 KB
testcase_30 AC 445 ms
187,636 KB
testcase_31 AC 377 ms
243,840 KB
testcase_32 AC 70 ms
33,112 KB
testcase_33 AC 606 ms
272,764 KB
testcase_34 AC 613 ms
371,052 KB
testcase_35 AC 180 ms
105,408 KB
testcase_36 AC 205 ms
102,356 KB
testcase_37 AC 534 ms
322,444 KB
testcase_38 AC 324 ms
322,928 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 690 ms
323,056 KB
testcase_43 AC 838 ms
322,340 KB
testcase_44 AC 837 ms
324,424 KB
testcase_45 AC 889 ms
480,096 KB
testcase_46 AC 882 ms
479,996 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];

ll from[101];
ll to[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<<1+(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