結果

問題 No.2303 Frog on Grid
ユーザー otoshigootoshigo
提出日時 2023-05-13 15:42:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,330 bytes
コンパイル時間 2,006 ms
コンパイル使用メモリ 117,076 KB
実行使用メモリ 24,840 KB
最終ジャッジ日時 2024-05-06 21:49:20
合計ジャッジ時間 3,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
14,976 KB
testcase_01 AC 17 ms
14,976 KB
testcase_02 AC 57 ms
23,424 KB
testcase_03 AC 36 ms
19,024 KB
testcase_04 AC 56 ms
23,012 KB
testcase_05 AC 60 ms
23,896 KB
testcase_06 AC 38 ms
19,424 KB
testcase_07 AC 57 ms
22,660 KB
testcase_08 AC 57 ms
22,804 KB
testcase_09 AC 28 ms
16,884 KB
testcase_10 AC 37 ms
18,704 KB
testcase_11 AC 27 ms
16,844 KB
testcase_12 AC 40 ms
20,372 KB
testcase_13 AC 18 ms
14,992 KB
testcase_14 AC 18 ms
14,976 KB
testcase_15 AC 17 ms
14,848 KB
testcase_16 AC 16 ms
14,848 KB
testcase_17 AC 17 ms
14,848 KB
testcase_18 AC 59 ms
24,708 KB
testcase_19 AC 60 ms
24,836 KB
testcase_20 AC 61 ms
24,708 KB
testcase_21 AC 59 ms
24,840 KB
testcase_22 AC 62 ms
24,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<atcoder/convolution>
using namespace std;
using namespace atcoder;
using ll=long long;
#define rep(i,n) for(int i=0;i<n;i++)
#define rrep(i,n) for(int i=(n)-1;i>=0;i--)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

const ll MOD=998244353;

const int MAX=5e5+10;
vector<ll>fac(MAX),finv(MAX),inv(MAX);

void set_fac(){
    fac[0]=fac[1]=1;
    finv[0]=finv[1]=1;
    inv[1]=1;
    for (int i=2;i<MAX;i++){
        fac[i]=fac[i-1]*i%MOD;
        inv[i]=MOD-inv[MOD%i]*(MOD/i)%MOD;
        finv[i]=finv[i-1]*inv[i]%MOD;
    }
}

ll cmb(int n,int r){
    if (r<0||n<r)return 0;
    return fac[n]*(finv[r]*finv[n-r]%MOD)%MOD;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    set_fac();
    int h,w;
    cin>>h>>w;
    vector<ll>A(h+1),B(w+1);
    rep(i,h+1){
        if(2*i-h>=0)A[i]=finv[h-i]*finv[2*i-h]%MOD;
    }
    rep(i,w+1){
        if(2*i-w>=0)B[i]=finv[w-i]*finv[2*i-w]%MOD;
    }
    vector<ll>C=convolution<MOD>(A,B);
    ll ans=0;
    rep(i,h+w+1){
        ans+=fac[i]*C[i]%MOD;
        ans%=MOD;
    }
    cout<<ans<<"\n";
}
0