結果
問題 | No.2688 Cell Proliferation (Hard) |
ユーザー | fumofumofuni |
提出日時 | 2024-03-21 00:35:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,752 ms / 4,000 ms |
コード長 | 2,244 bytes |
コンパイル時間 | 4,352 ms |
コンパイル使用メモリ | 271,952 KB |
実行使用メモリ | 40,584 KB |
最終ジャッジ日時 | 2024-09-30 09:50:15 |
合計ジャッジ時間 | 30,808 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
11,116 KB |
testcase_01 | AC | 6 ms
11,240 KB |
testcase_02 | AC | 6 ms
11,116 KB |
testcase_03 | AC | 99 ms
13,152 KB |
testcase_04 | AC | 1,626 ms
39,636 KB |
testcase_05 | AC | 801 ms
25,856 KB |
testcase_06 | AC | 366 ms
18,332 KB |
testcase_07 | AC | 368 ms
18,324 KB |
testcase_08 | AC | 1,680 ms
39,916 KB |
testcase_09 | AC | 927 ms
29,336 KB |
testcase_10 | AC | 1,670 ms
40,324 KB |
testcase_11 | AC | 1,699 ms
39,400 KB |
testcase_12 | AC | 395 ms
18,632 KB |
testcase_13 | AC | 1,750 ms
40,584 KB |
testcase_14 | AC | 878 ms
27,556 KB |
testcase_15 | AC | 1,736 ms
40,584 KB |
testcase_16 | AC | 881 ms
26,584 KB |
testcase_17 | AC | 841 ms
26,368 KB |
testcase_18 | AC | 1,703 ms
40,080 KB |
testcase_19 | AC | 832 ms
26,264 KB |
testcase_20 | AC | 415 ms
19,040 KB |
testcase_21 | AC | 423 ms
19,036 KB |
testcase_22 | AC | 871 ms
26,044 KB |
testcase_23 | AC | 449 ms
19,420 KB |
testcase_24 | AC | 1,697 ms
40,104 KB |
testcase_25 | AC | 402 ms
18,880 KB |
testcase_26 | AC | 1,752 ms
40,136 KB |
testcase_27 | AC | 858 ms
26,296 KB |
testcase_28 | AC | 904 ms
26,588 KB |
ソースコード
#include<bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; #define rep(i,n) for(ll i=0;i<n;i++) #define repl(i,l,r) for(ll i=(l);i<(r);i++) #define per(i,n) for(ll i=(n)-1;i>=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue<x,vector<x>,greater<x>> #define all(x) (x).begin(),(x).end() #define CST(x) cout<<fixed<<setprecision(x) #define vtpl(x,y,z) vector<tuple<x,y,z>> #define rev(x) reverse(x); using ll=long long; using vl=vector<ll>; using vvl=vector<vector<ll>>; using pl=pair<ll,ll>; using vpl=vector<pl>; using vvpl=vector<vpl>; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[9]={0,1,-1,0,1,1,-1,-1,0}; const ll dx[9]={1,0,0,-1,1,-1,1,-1,0}; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } using mint=modint998244353; mint p1,p2,q1,q2; vector<mint> a(1000010); vector<mint> dp(1000010); void induce(ll l,ll mid,ll r){ vector<mint> ds; vector<mint> nds; for(ll i=l;i<mid;i++){ ds.emplace_back(dp[i]); } for(ll i=0;i<r+1-l;i++){ nds.emplace_back(a[i]); } auto ret=convolution(ds,nds); mint sum=0; ll now=0; for(int i=mid;i<r;i++){ dp[i]+=ret[i-1-l]; } //cout << l << " " << mid << " " << r << endl; //rep(i,4)cout << dp[i] <<" ";cout << endl; } void dfs(ll l,ll r){ if(l+1==r){ //cout << dp[l] << endl; dp[l]*=p1; dp[l]+=a[l]; return; } ll mid=(l+r)/2; dfs(l,mid); induce(l,mid,r); dfs(mid,r); } int main(){ vl hoge(4);rep(i,4)cin >> hoge[i]; //cin >> p1.val() >> p2.val() >> q1.val() >> q2.val(); p1=hoge[0];p2=hoge[1]; q1=hoge[2];q2=hoge[3]; ll n;cin >> n; a[0]=1; q1/=q2; p1/=p2; mint c=1; for(ll i=1;i<=n;i++){ c*=q1; a[i]=a[i-1]*c; } dfs(0,n+1); //rep(i,n+1)cout << dp[i] <<" ";cout << endl; cout << dp[n].val() << endl; }