結果

問題 No.2164 Equal Balls
ユーザー hotman78hotman78
提出日時 2022-12-15 06:00:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 798 ms / 5,000 ms
コード長 1,114 bytes
コンパイル時間 4,024 ms
コンパイル使用メモリ 238,252 KB
実行使用メモリ 18,780 KB
最終ジャッジ日時 2024-04-26 09:14:06
合計ジャッジ時間 22,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 46 ms
7,768 KB
testcase_09 AC 34 ms
6,332 KB
testcase_10 AC 20 ms
5,376 KB
testcase_11 AC 86 ms
11,116 KB
testcase_12 AC 49 ms
8,108 KB
testcase_13 AC 30 ms
6,016 KB
testcase_14 AC 39 ms
7,040 KB
testcase_15 AC 82 ms
10,664 KB
testcase_16 AC 43 ms
7,508 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 60 ms
9,080 KB
testcase_19 AC 101 ms
12,964 KB
testcase_20 AC 52 ms
8,320 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 293 ms
7,808 KB
testcase_24 AC 237 ms
14,712 KB
testcase_25 AC 254 ms
5,760 KB
testcase_26 AC 154 ms
14,620 KB
testcase_27 AC 284 ms
16,408 KB
testcase_28 AC 288 ms
16,528 KB
testcase_29 AC 110 ms
6,528 KB
testcase_30 AC 252 ms
12,084 KB
testcase_31 AC 350 ms
7,168 KB
testcase_32 AC 301 ms
15,528 KB
testcase_33 AC 183 ms
5,760 KB
testcase_34 AC 251 ms
7,680 KB
testcase_35 AC 50 ms
5,376 KB
testcase_36 AC 513 ms
17,260 KB
testcase_37 AC 408 ms
6,912 KB
testcase_38 AC 790 ms
18,648 KB
testcase_39 AC 793 ms
18,644 KB
testcase_40 AC 786 ms
18,648 KB
testcase_41 AC 791 ms
18,652 KB
testcase_42 AC 791 ms
18,776 KB
testcase_43 AC 788 ms
18,648 KB
testcase_44 AC 790 ms
18,780 KB
testcase_45 AC 789 ms
18,696 KB
testcase_46 AC 792 ms
18,776 KB
testcase_47 AC 798 ms
18,644 KB
testcase_48 AC 798 ms
18,648 KB
testcase_49 AC 660 ms
6,400 KB
testcase_50 AC 659 ms
6,400 KB
testcase_51 AC 662 ms
6,528 KB
testcase_52 AC 661 ms
6,400 KB
testcase_53 AC 661 ms
6,528 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