結果

問題 No.2303 Frog on Grid
ユーザー umimelumimel
提出日時 2023-05-13 16:04:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 2,563 bytes
コンパイル時間 4,456 ms
コンパイル使用メモリ 238,940 KB
実行使用メモリ 14,320 KB
最終ジャッジ日時 2024-05-06 21:59:51
合計ジャッジ時間 6,898 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
9,448 KB
testcase_01 AC 69 ms
9,488 KB
testcase_02 AC 87 ms
13,592 KB
testcase_03 AC 80 ms
11,388 KB
testcase_04 AC 88 ms
13,688 KB
testcase_05 AC 89 ms
13,844 KB
testcase_06 AC 81 ms
11,408 KB
testcase_07 AC 91 ms
13,232 KB
testcase_08 AC 90 ms
13,380 KB
testcase_09 AC 77 ms
10,292 KB
testcase_10 AC 80 ms
11,176 KB
testcase_11 AC 78 ms
10,308 KB
testcase_12 AC 83 ms
11,640 KB
testcase_13 AC 71 ms
9,344 KB
testcase_14 AC 72 ms
9,572 KB
testcase_15 AC 69 ms
9,416 KB
testcase_16 AC 68 ms
9,548 KB
testcase_17 AC 70 ms
9,456 KB
testcase_18 AC 91 ms
14,320 KB
testcase_19 AC 91 ms
14,196 KB
testcase_20 AC 89 ms
14,320 KB
testcase_21 AC 88 ms
14,072 KB
testcase_22 AC 96 ms
14,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count());
const ll MOD1000000007 = 1000000007;
const ll MOD998244353 = 998244353;
const ll MOD[3] = {999727999, 1070777777, 1000000007};
const ll LINF = 1LL << 60;
const int IINF = 1 << 30;

template<typename T> struct Edge{
    int to; T w;
    Edge(int to_, T w_=1){
        to = to_;
        w=w_;
    }
};
template<typename T> using Tree = vector<vector<Edge<T>>>;
template<typename T> using Graph = vector<vector<Edge<T>>>;
/* 容量&重み付きエッジ for Dinic */
template<typename T> struct REdge{
    int to;
    T cap;
    T cost;
    int rev;
    REdge(int to_, T cap_, T cost_=1){
        to = to_;
        cap = cap_;
        cost = cost_;
    }
    
    REdge(int to_, T cap_, T cost_, int rev_){
        to = to_;
        cap = cap_;
        cost = cost_;
        rev = rev_;
    }
};

/* 残余グラフ for Dinic */
template<typename T> using RGraph = vector<vector<REdge<T>>>;

using mint = modint998244353;

const ll MAX = 510000;
mint fac[MAX], finv[MAX], inv[MAX];
 
void cominit(){
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for(ll i=2; i<MAX; i++){
        fac[i] = fac[i-1] * i;
        inv[i] = mint(i).inv();
        finv[i] = finv[i-1] * inv[i];
    }
}
 
mint com(ll n, ll k){
    if(n < k) return 0;
    if(n < 0 || k < 0) return mint(0);
    return fac[n] * finv[k] * finv[n-k];
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    cominit();
    ll h, w; cin >> h >> w;
    h++; w++;
    //dp_h[i]:=合計i個の矢印でh-1に到達する組み合わせ
    //dp_w[i]:=合計i個の矢印でw-1に到達する組み合わせ
    vector<mint> dp_h(h, 0), dp_w(w, 0);
    for(ll n2=0; n2<=(h-1)/2; n2++){
        ll n1 = (h-1)-n2*2;
        dp_h[n1+n2] = com(n1+n2, n1)*finv[n1+n2];
    }
    for(ll n2=0; n2<=(w-1)/2; n2++){
        ll n1 = (w-1)-n2*2;
        dp_w[n1+n2] = com(n1+n2, n1)*finv[n1+n2];
    }

    vector<mint> a, b;
    for(ll i=h/2; i<=h-1; i++) a.pb(dp_h[i]);
    for(ll j=w/2; j<=w-1; j++) b.pb(dp_w[j]);

    vector<mint> c = convolution(a, b);
    mint ans = 0;
    for(ll i=h/2+w/2; i<=h+w-2; i++) ans += fac[i]*c[i-(h/2+w/2)];
    cout << ans.val() << endl;
}
0