結果

問題 No.2164 Equal Balls
ユーザー 沙耶花沙耶花
提出日時 2022-12-15 22:05:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,872 ms / 5,000 ms
コード長 1,226 bytes
コンパイル時間 5,110 ms
コンパイル使用メモリ 277,272 KB
実行使用メモリ 238,096 KB
最終ジャッジ日時 2024-11-14 13:38:00
合計ジャッジ時間 52,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 373 ms
232,468 KB
testcase_01 AC 368 ms
232,480 KB
testcase_02 AC 364 ms
232,432 KB
testcase_03 AC 363 ms
232,396 KB
testcase_04 AC 361 ms
232,396 KB
testcase_05 AC 361 ms
232,604 KB
testcase_06 AC 360 ms
232,448 KB
testcase_07 AC 361 ms
232,528 KB
testcase_08 AC 405 ms
234,180 KB
testcase_09 AC 390 ms
233,456 KB
testcase_10 AC 377 ms
233,144 KB
testcase_11 AC 450 ms
235,932 KB
testcase_12 AC 406 ms
234,192 KB
testcase_13 AC 407 ms
233,376 KB
testcase_14 AC 403 ms
234,116 KB
testcase_15 AC 441 ms
234,860 KB
testcase_16 AC 404 ms
234,132 KB
testcase_17 AC 372 ms
232,844 KB
testcase_18 AC 418 ms
234,344 KB
testcase_19 AC 460 ms
235,820 KB
testcase_20 AC 410 ms
234,324 KB
testcase_21 AC 367 ms
232,640 KB
testcase_22 AC 363 ms
232,588 KB
testcase_23 AC 1,364 ms
234,284 KB
testcase_24 AC 768 ms
236,320 KB
testcase_25 AC 1,784 ms
233,420 KB
testcase_26 AC 557 ms
236,284 KB
testcase_27 AC 857 ms
236,912 KB
testcase_28 AC 869 ms
236,888 KB
testcase_29 AC 577 ms
233,600 KB
testcase_30 AC 835 ms
235,452 KB
testcase_31 AC 2,137 ms
234,012 KB
testcase_32 AC 910 ms
236,672 KB
testcase_33 AC 1,045 ms
233,472 KB
testcase_34 AC 1,006 ms
234,188 KB
testcase_35 AC 539 ms
232,684 KB
testcase_36 AC 1,467 ms
237,452 KB
testcase_37 AC 2,872 ms
234,236 KB
testcase_38 AC 1,152 ms
237,964 KB
testcase_39 AC 1,143 ms
237,840 KB
testcase_40 AC 1,148 ms
237,968 KB
testcase_41 AC 1,139 ms
237,968 KB
testcase_42 AC 1,143 ms
238,096 KB
testcase_43 AC 1,145 ms
237,972 KB
testcase_44 AC 1,145 ms
237,836 KB
testcase_45 AC 1,148 ms
237,840 KB
testcase_46 AC 1,146 ms
237,844 KB
testcase_47 AC 1,146 ms
237,836 KB
testcase_48 AC 1,145 ms
237,968 KB
testcase_49 AC 1,014 ms
233,876 KB
testcase_50 AC 1,015 ms
233,836 KB
testcase_51 AC 1,012 ms
233,916 KB
testcase_52 AC 1,016 ms
233,812 KB
testcase_53 AC 1,009 ms
233,804 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