結果

問題 No.2874 Gunegune Tree
ユーザー kotatsugamekotatsugame
提出日時 2024-09-06 22:52:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 68,300 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-06 22:53:50
合計ジャッジ時間 3,586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 65 ms
6,940 KB
testcase_05 AC 24 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 141 ms
6,940 KB
testcase_08 AC 68 ms
6,944 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 121 ms
6,940 KB
testcase_11 AC 101 ms
6,944 KB
testcase_12 AC 31 ms
6,944 KB
testcase_13 AC 142 ms
6,944 KB
testcase_14 AC 119 ms
6,940 KB
testcase_15 AC 22 ms
6,948 KB
testcase_16 AC 154 ms
6,940 KB
testcase_17 AC 19 ms
6,940 KB
testcase_18 AC 21 ms
6,944 KB
testcase_19 AC 14 ms
6,940 KB
testcase_20 AC 18 ms
6,944 KB
testcase_21 AC 51 ms
6,940 KB
testcase_22 AC 72 ms
6,940 KB
testcase_23 AC 48 ms
6,940 KB
testcase_24 AC 60 ms
6,944 KB
testcase_25 AC 106 ms
6,940 KB
testcase_26 AC 65 ms
6,940 KB
testcase_27 AC 144 ms
6,940 KB
testcase_28 AC 35 ms
6,944 KB
testcase_29 AC 85 ms
6,944 KB
testcase_30 AC 69 ms
6,940 KB
testcase_31 AC 53 ms
6,940 KB
testcase_32 AC 159 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N;
const int dx[5]={1,1,0,-1,-1};
const int dy[5]={0,1,1,1,0};
mint dp[2][5],way[2][5];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	int now=0;
	for(int j=0;j<5;j++)
	{
		way[now][j]=mint(5).inv();
		dp[now][j]=dy[j]*way[now][j];
	}
	for(int i=1;i<N;i++)
	{
		int nxt=1-now;
		for(int j=0;j<5;j++)dp[nxt][j]=way[nxt][j]=0;
		for(int j=0;j<5;j++)
		{
			int lj=max(0,j-1),rj=min(5,j+2);
			mint p=mint(rj-lj).inv();
			for(int nj=lj;nj<rj;nj++)
			{
				way[nxt][nj]+=way[now][j]*p;
				dp[nxt][nj]+=(dp[now][j]+dy[nj]*way[now][j])*p;
			}
		}
		now=nxt;
	}
	mint ans=0;
	for(int j=0;j<5;j++)ans+=dp[now][j];
	cout<<ans.val()<<endl;
}
0