結果

問題 No.2164 Equal Balls
ユーザー hotman78hotman78
提出日時 2022-12-15 06:00:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 786 ms / 5,000 ms
コード長 1,114 bytes
コンパイル時間 3,930 ms
コンパイル使用メモリ 245,304 KB
実行使用メモリ 18,888 KB
最終ジャッジ日時 2024-11-08 23:24:26
合計ジャッジ時間 22,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 47 ms
7,776 KB
testcase_09 AC 35 ms
6,460 KB
testcase_10 AC 21 ms
5,248 KB
testcase_11 AC 87 ms
10,988 KB
testcase_12 AC 49 ms
8,108 KB
testcase_13 AC 31 ms
6,144 KB
testcase_14 AC 39 ms
6,912 KB
testcase_15 AC 85 ms
10,800 KB
testcase_16 AC 45 ms
7,640 KB
testcase_17 AC 11 ms
5,248 KB
testcase_18 AC 61 ms
9,080 KB
testcase_19 AC 103 ms
12,964 KB
testcase_20 AC 54 ms
8,432 KB
testcase_21 AC 8 ms
5,248 KB
testcase_22 AC 8 ms
5,248 KB
testcase_23 AC 288 ms
7,680 KB
testcase_24 AC 240 ms
14,716 KB
testcase_25 AC 250 ms
5,760 KB
testcase_26 AC 152 ms
14,752 KB
testcase_27 AC 281 ms
16,532 KB
testcase_28 AC 291 ms
16,404 KB
testcase_29 AC 111 ms
6,528 KB
testcase_30 AC 252 ms
12,176 KB
testcase_31 AC 342 ms
7,040 KB
testcase_32 AC 301 ms
15,400 KB
testcase_33 AC 182 ms
5,760 KB
testcase_34 AC 240 ms
7,680 KB
testcase_35 AC 49 ms
5,248 KB
testcase_36 AC 493 ms
17,212 KB
testcase_37 AC 393 ms
7,040 KB
testcase_38 AC 773 ms
18,800 KB
testcase_39 AC 775 ms
18,800 KB
testcase_40 AC 782 ms
18,672 KB
testcase_41 AC 779 ms
18,800 KB
testcase_42 AC 780 ms
18,888 KB
testcase_43 AC 782 ms
18,676 KB
testcase_44 AC 772 ms
18,800 KB
testcase_45 AC 746 ms
18,672 KB
testcase_46 AC 736 ms
18,676 KB
testcase_47 AC 786 ms
18,800 KB
testcase_48 AC 785 ms
18,800 KB
testcase_49 AC 644 ms
6,400 KB
testcase_50 AC 641 ms
6,400 KB
testcase_51 AC 648 ms
6,528 KB
testcase_52 AC 646 ms
6,528 KB
testcase_53 AC 651 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
#include<atcoder/convolution>
using namespace std;
using lint = long long;
#define rep(i,n) for(lint i=0;i<(n);++i)
using mint=atcoder::static_modint<998244353>;

int main(){
	lint n,m;
	cin>>n>>m;
	vector<lint>a(n),b(n);
	rep(i,n)cin>>a[i];
	rep(i,n)cin>>b[i];
	vector<vector<mint>>v(m*2+1);
	rep(i,2*m+1)v[i].resize(601,1);
	vector<mint>table(1000,1),inv(1000);
	rep(i,1000)table[i+1]=table[i]*(i+1);
	inv[999]=table[999].inv();
	for(lint i=998;i>=0;--i)inv[i]=inv[i+1]*(i+1);
	auto comb=[&](auto a,auto b){
		return table[a]*inv[b]*inv[a-b];
	};
	rep(i,n){
		rep(k,601){
			if(300-a[i]<=k&&k<=300+b[i]){
				const lint j=k-300+a[i];
				v[i%m+m][k]*=comb(a[i]+b[i],j);
			}else{
				v[i%m+m][k]=0;
			}
		
		}
		// rep(j,a[i]+b[i]+1){
		// 	const lint k=300-a[i]+j;
		// 	v[i%m+m][k]*=comb(a[i]+b[i],j);
		// 	// if(j<a[i])v[i%(m)+(m)][k]=j+1;
		// 	// else if(j<b[i])v[i%(m)+(m)][k]=comb(a[i]);
		// 	// else v[i%(m)+(m)][k]=a[i]+b[i]-j+1;
		// }
	}
	
	for(lint i=m-1;i>=1;--i){
		v[i]=atcoder::convolution(v[i*2],v[i*2+1]);
	}
	cout<<v[1][300*m].val()<<endl;
}
0