結果

問題 No.2874 Gunegune Tree
ユーザー shobonvipshobonvip
提出日時 2024-09-06 23:07:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 1,757 bytes
コンパイル時間 4,552 ms
コンパイル使用メモリ 267,656 KB
実行使用メモリ 25,112 KB
最終ジャッジ日時 2024-09-06 23:07:33
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 7 ms
6,940 KB
testcase_04 AC 35 ms
12,416 KB
testcase_05 AC 13 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 73 ms
23,832 KB
testcase_08 AC 38 ms
12,928 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 63 ms
20,528 KB
testcase_11 AC 50 ms
16,992 KB
testcase_12 AC 17 ms
7,424 KB
testcase_13 AC 74 ms
23,616 KB
testcase_14 AC 61 ms
20,068 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 77 ms
24,472 KB
testcase_17 AC 10 ms
6,944 KB
testcase_18 AC 11 ms
6,944 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 9 ms
6,944 KB
testcase_21 AC 26 ms
10,112 KB
testcase_22 AC 39 ms
13,568 KB
testcase_23 AC 25 ms
9,728 KB
testcase_24 AC 32 ms
11,904 KB
testcase_25 AC 54 ms
17,964 KB
testcase_26 AC 34 ms
12,160 KB
testcase_27 AC 74 ms
24,116 KB
testcase_28 AC 19 ms
7,936 KB
testcase_29 AC 44 ms
15,304 KB
testcase_30 AC 36 ms
12,800 KB
testcase_31 AC 27 ms
10,496 KB
testcase_32 AC 79 ms
25,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	int n; cin >> n;
	// 確率, 現在の期待値
	vector dp1(n+1, vector<mint>(5));
	vector dp2(n+1, vector<mint>(5));

	vector<mint> inv(10);
	rep(i,1,10){
		inv[i] = mint(i).inv();
	}

	dp1[1][0] = inv[5];
	dp1[1][1] = inv[5];
	dp1[1][2] = inv[5];
	dp1[1][3] = inv[5];
	dp1[1][4] = inv[5];
	dp2[1][1] = inv[5];
	dp2[1][2] = inv[5];
	dp2[1][3] = inv[5];
	rep(i,1,n){
		rep(j,0,5){
			int v = 0;
			rep(k,0,5){
				if (abs(j-k) <= 1){
					v += 1;
				}
			}
			rep(k,0,5){
				if (abs(j-k) <= 1){
					if (1<=k && k<=3){
						dp2[i+1][k] += dp1[i][j] * inv[v];
					}
					dp2[i+1][k] += dp2[i][j] * inv[v];
					dp1[i+1][k] += dp1[i][j] * inv[v];
				}
			}
		}
	}
	cout << sum(dp2[n]).val() << '\n';
}

0