結果

問題 No.2874 Gunegune Tree
ユーザー tottoripapertottoripaper
提出日時 2024-09-09 00:31:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,744 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 217,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-09 00:31:33
合計ジャッジ時間 4,887 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 7 ms
6,944 KB
testcase_04 AC 32 ms
6,940 KB
testcase_05 AC 13 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 69 ms
6,940 KB
testcase_08 AC 35 ms
6,944 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 59 ms
6,944 KB
testcase_11 AC 48 ms
6,940 KB
testcase_12 AC 16 ms
6,940 KB
testcase_13 AC 70 ms
6,944 KB
testcase_14 AC 57 ms
6,940 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 72 ms
6,944 KB
testcase_17 AC 10 ms
6,944 KB
testcase_18 AC 11 ms
6,944 KB
testcase_19 AC 8 ms
6,944 KB
testcase_20 AC 10 ms
6,944 KB
testcase_21 AC 25 ms
6,944 KB
testcase_22 AC 36 ms
6,944 KB
testcase_23 AC 24 ms
6,944 KB
testcase_24 AC 30 ms
6,940 KB
testcase_25 AC 51 ms
6,944 KB
testcase_26 AC 32 ms
6,944 KB
testcase_27 AC 71 ms
6,940 KB
testcase_28 AC 18 ms
6,944 KB
testcase_29 AC 42 ms
6,944 KB
testcase_30 AC 33 ms
6,944 KB
testcase_31 AC 26 ms
6,944 KB
testcase_32 AC 74 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)

using ll = std::int64_t;
using P = std::tuple<int, int>;

std::tuple<ll, ll, ll> extgcd(ll a, ll b){
    ll s1 = 1, t1 = 0, s2 = 0, t2 = 1;
    while(b != 0){
        std::tie(s1, t1, s2, t2) = std::make_tuple(s2, t2, s1 - (a / b) * s2, t1 - (a / b) * t2);
        std::tie(a, b) = std::make_tuple(b, a % b);
    }
    return std::make_tuple(s1, t1, a);
}

ll inv(ll a, ll n){
    ll inv_a;
    std::tie(inv_a, std::ignore, std::ignore) = extgcd(a, n);
    inv_a %= n;
    if(inv_a < 0){inv_a += n;}
    return inv_a;
}

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int N;
    std::cin >> N;

    constexpr ll MOD = 998'244'353;

    std::vector dp(2, std::vector<ll>(5, 0));

    auto trans = [](int j, int k){
        if(j == k){
            return true;
        }

        if(j == 0){
            return k == 1;
        }
        if(j == 4){
            return k == 3;
        }
        return std::abs(j - k) == 1;
    };

    for(int i=0;i<N;i++){
        std::swap(dp[0], dp[1]);
        std::fill(std::begin(dp[1]), std::end(dp[1]), 0);

        for(int j=0;j<5;j++){
            int n = 0;
            for(int k=0;k<5;k++){
                if(trans(j, k)){n += 1;}
            }

            ll inv_n = inv(n, MOD);
            for(int k=0;k<5;k++){
                if(!trans(j, k)){continue;}

                dp[1][j] += (dp[0][k] + (1 <= j && j <= 3 ? 1 : 0)) * inv_n % MOD;
                if(dp[1][j] >= MOD){dp[1][j] -= MOD;}
            }
        }
    }

    ll res = std::accumulate(std::begin(dp[1]), std::end(dp[1]), 0ll);
    res = res % MOD * inv(5, MOD) % MOD;
    std::cout << res << std::endl;
}
0