結果

問題 No.2874 Gunegune Tree
ユーザー n0ma_run0ma_ru
提出日時 2024-09-07 00:13:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,665 bytes
コンパイル時間 2,479 ms
コンパイル使用メモリ 208,848 KB
実行使用メモリ 20,432 KB
最終ジャッジ日時 2024-09-07 00:13:35
合計ジャッジ時間 6,774 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 17 ms
6,944 KB
testcase_04 AC 95 ms
10,384 KB
testcase_05 AC 36 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 214 ms
19,296 KB
testcase_08 AC 102 ms
10,844 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 180 ms
16,748 KB
testcase_11 AC 142 ms
14,080 KB
testcase_12 AC 45 ms
6,940 KB
testcase_13 AC 211 ms
19,380 KB
testcase_14 AC 173 ms
16,444 KB
testcase_15 AC 31 ms
6,944 KB
testcase_16 AC 221 ms
20,088 KB
testcase_17 AC 27 ms
6,940 KB
testcase_18 AC 29 ms
6,940 KB
testcase_19 AC 19 ms
6,940 KB
testcase_20 AC 25 ms
6,940 KB
testcase_21 AC 72 ms
8,800 KB
testcase_22 AC 108 ms
11,304 KB
testcase_23 AC 68 ms
8,284 KB
testcase_24 AC 89 ms
9,916 KB
testcase_25 AC 152 ms
14,932 KB
testcase_26 AC 94 ms
10,188 KB
testcase_27 AC 242 ms
19,568 KB
testcase_28 AC 51 ms
6,944 KB
testcase_29 AC 127 ms
12,860 KB
testcase_30 AC 100 ms
10,808 KB
testcase_31 AC 75 ms
8,772 KB
testcase_32 AC 226 ms
20,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
ll modpow(ll x, ll n, ll mod) {
    x %= mod;
    ll res = 1;
    while (n > 0) {
        if (n&1) res = res*x%mod;
        x = x*x%mod;
        n >>= 1;
    }
    return res;
}
int n;
ll mod = 998244353;
int main() {
    cin >> n;

    ll inv5 = modpow(5, mod-2, mod);
    vector prob(5, vector<ll>(n+1)), exp(5, vector<ll>(n+1));
    for (int i = 0; i < 5; ++i) prob[i][1] = inv5;
    exp[0][1] = exp[4][1] = 0;
    exp[1][1] = exp[2][1] = exp[3][1] = inv5;
    vector<int> l{ 0, 0, 1, 2, 3 };
    vector<int> r{ 2, 3, 4, 5, 5 };
    int dy[] = {0, 1, 1, 1, 0};
    vector<ll> mp;
    for (int i = 0; i <= 5; ++i) mp.push_back(modpow(i, mod-2, mod));
    for (int i = 2; i <= n; ++i) {
        for (int j = 0; j < 5; ++j) {
            for (int k = l[j]; k < r[j]; ++k) {
                // prob
                prob[k][i] += prob[j][i-1] * mp[r[j]-l[j]] % mod;
                prob[k][i] %= mod;
                // exp
                exp[k][i] += (exp[j][i-1] * mp[r[j]-l[j]] % mod + dy[k] * mp[r[j]-l[j]] % mod * prob[j][i-1] % mod) % mod;
                exp[k][i] %= mod;
            }
        }
    }
    ll ans = 0;
    for (int i = 0; i < 5; ++i) ans = (exp[i][n] + ans) % mod;
    cout << ans << '\n';
}
0