結果

問題 No.2164 Equal Balls
ユーザー 沙耶花沙耶花
提出日時 2022-12-15 22:05:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,681 ms / 5,000 ms
コード長 1,226 bytes
コンパイル時間 5,238 ms
コンパイル使用メモリ 268,656 KB
実行使用メモリ 238,092 KB
最終ジャッジ日時 2024-04-26 21:59:30
合計ジャッジ時間 51,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 364 ms
232,692 KB
testcase_01 AC 365 ms
232,576 KB
testcase_02 AC 367 ms
232,448 KB
testcase_03 AC 364 ms
232,576 KB
testcase_04 AC 365 ms
232,704 KB
testcase_05 AC 365 ms
232,448 KB
testcase_06 AC 363 ms
232,704 KB
testcase_07 AC 368 ms
232,704 KB
testcase_08 AC 406 ms
234,180 KB
testcase_09 AC 396 ms
233,324 KB
testcase_10 AC 380 ms
233,088 KB
testcase_11 AC 451 ms
235,800 KB
testcase_12 AC 410 ms
234,184 KB
testcase_13 AC 393 ms
233,496 KB
testcase_14 AC 407 ms
234,120 KB
testcase_15 AC 443 ms
234,864 KB
testcase_16 AC 406 ms
234,120 KB
testcase_17 AC 371 ms
232,848 KB
testcase_18 AC 423 ms
234,216 KB
testcase_19 AC 462 ms
235,816 KB
testcase_20 AC 413 ms
234,452 KB
testcase_21 AC 382 ms
232,832 KB
testcase_22 AC 448 ms
232,704 KB
testcase_23 AC 1,192 ms
234,412 KB
testcase_24 AC 780 ms
236,448 KB
testcase_25 AC 1,616 ms
233,384 KB
testcase_26 AC 566 ms
236,280 KB
testcase_27 AC 862 ms
236,784 KB
testcase_28 AC 879 ms
236,880 KB
testcase_29 AC 588 ms
233,468 KB
testcase_30 AC 844 ms
235,328 KB
testcase_31 AC 1,770 ms
234,112 KB
testcase_32 AC 920 ms
236,672 KB
testcase_33 AC 921 ms
233,396 KB
testcase_34 AC 956 ms
234,184 KB
testcase_35 AC 519 ms
232,960 KB
testcase_36 AC 1,443 ms
237,576 KB
testcase_37 AC 2,681 ms
234,100 KB
testcase_38 AC 1,148 ms
237,840 KB
testcase_39 AC 1,151 ms
237,964 KB
testcase_40 AC 1,153 ms
238,092 KB
testcase_41 AC 1,149 ms
237,832 KB
testcase_42 AC 1,161 ms
237,960 KB
testcase_43 AC 1,154 ms
238,056 KB
testcase_44 AC 1,153 ms
238,088 KB
testcase_45 AC 1,160 ms
238,088 KB
testcase_46 AC 1,154 ms
237,836 KB
testcase_47 AC 1,157 ms
238,092 KB
testcase_48 AC 1,149 ms
237,836 KB
testcase_49 AC 1,020 ms
233,728 KB
testcase_50 AC 1,022 ms
233,652 KB
testcase_51 AC 1,022 ms
233,848 KB
testcase_52 AC 1,027 ms
233,728 KB
testcase_53 AC 1,024 ms
233,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001

mint cal[305][305][630];

int main(){
	
	int c = 315;
	rep(i,305){
		vector<mint> dp(630,0);
		dp[c] = 1;
		rep(j,i){
			vector<mint> ndp(630,0);
			rep(k,630){
				ndp[k] += dp[k];
				if(k!=629)ndp[k+1] += dp[k];
			}
			swap(dp,ndp);
		}
		vector<mint> tdp = dp;
		rep(j,305){
			rep(k,630){
				cal[i][j][k] += dp[k];
			}
			vector<mint> ndp(630,0);
			rep(k,630){
				ndp[k] += dp[k];
				if(k!=0)ndp[k-1] += dp[k];
			}
			swap(dp,ndp);
			
		}
		dp = tdp;
	}
	
	
	
	int N,M;
	cin>>N>>M;
	
	vector<int> a(N),b(N);
	rep(i,N)cin>>a[i];
	rep(i,N)cin>>b[i];
	
	queue<pair<vector<mint>,int>> Q;
	rep(i,M){
		vector<mint> t(630,1);
		rep(j,630){
			for(int k=i;k<N;k+=M){
				t[j] *= cal[a[k]][b[k]][j];
			}
		}
		Q.emplace(t,c);
	}
	//cout<<"A"<<endl;
	while(Q.size()>1){
		auto x = Q.front();
		Q.pop();
		auto y = Q.front();
		Q.pop();
		Q.emplace(convolution(x.first,y.first),x.second+y.second);
	}
	
	cout<<Q.front().first[Q.front().second].val()<<endl;
	
	return 0;
}
0