結果

問題 No.2688 Cell Proliferation (Hard)
ユーザー 👑 potato167potato167
提出日時 2024-03-21 12:03:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,628 ms / 4,000 ms
コード長 720 bytes
コンパイル時間 4,967 ms
コンパイル使用メモリ 269,744 KB
実行使用メモリ 37,556 KB
最終ジャッジ日時 2024-09-30 10:05:44
合計ジャッジ時間 28,796 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 87 ms
6,156 KB
testcase_04 AC 1,563 ms
35,068 KB
testcase_05 AC 750 ms
20,308 KB
testcase_06 AC 340 ms
11,588 KB
testcase_07 AC 333 ms
11,448 KB
testcase_08 AC 1,510 ms
34,524 KB
testcase_09 AC 841 ms
25,596 KB
testcase_10 AC 1,585 ms
36,092 KB
testcase_11 AC 1,521 ms
35,388 KB
testcase_12 AC 354 ms
12,504 KB
testcase_13 AC 1,617 ms
37,536 KB
testcase_14 AC 796 ms
23,408 KB
testcase_15 AC 1,628 ms
37,556 KB
testcase_16 AC 779 ms
22,776 KB
testcase_17 AC 758 ms
21,400 KB
testcase_18 AC 1,582 ms
36,176 KB
testcase_19 AC 762 ms
21,500 KB
testcase_20 AC 376 ms
13,452 KB
testcase_21 AC 374 ms
13,384 KB
testcase_22 AC 770 ms
21,168 KB
testcase_23 AC 395 ms
14,068 KB
testcase_24 AC 1,571 ms
35,788 KB
testcase_25 AC 357 ms
12,764 KB
testcase_26 AC 1,604 ms
36,696 KB
testcase_27 AC 767 ms
21,660 KB
testcase_28 AC 784 ms
22,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
#define rep(i,a,b) for(int i=a;i<b;i++)
using mint=modint998244353;
int main(){
	int a,b,c,d,T;
	cin>>a>>b>>c>>d>>T;
	mint P=mint(a)/mint(b);
	mint Q=mint(c)/mint(d);
	vector<mint> X(T+1,1);
	rep(i,0,T) X[i+1]=X[i]*Q.pow(i+1);
	vector<mint> dp(T+1);
	dp[0]=1;
	auto f=[&](auto self,int l,int r) -> void {
		if(l+1==r) return;
		int m=(l+r)/2;
		self(self,l,m);
		vector<mint> A(m-l),B(r-l);
		rep(i,l,m) A[i-l]=dp[i];
		rep(i,1,r-l) B[i]=X[i-1]*P;
		auto C=convolution(A,B);
		rep(i,m-l,r-l) dp[i+l]+=C[i];
		self(self,m,r);
	};
	f(f,0,T+1);
	mint ans=0;
	for(int i=T;i>=0;i--){
		ans+=dp[i]*X[T-i];
	}
	cout<<ans.val()<<"\n";
}
0