結果

問題 No.2816 At Most Two Moves
ユーザー kotatsugamekotatsugame
提出日時 2024-07-19 23:16:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 1,708 bytes
コンパイル時間 822 ms
コンパイル使用メモリ 76,048 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-19 23:16:15
合計ジャッジ時間 1,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 5 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 4 ms
6,944 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 5 ms
6,944 KB
testcase_22 AC 4 ms
6,944 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<atcoder/modint>
using namespace std;
#include<vector>
template<typename T>
struct combination{
	vector<T>fac,ifac;
	combination(size_t N=0):fac(1,1),ifac(1,1)
	{
		make_table(N);
	}
	void make_table(size_t N)
	{
		if(fac.size()>N)return;
		size_t now=fac.size();
		N=max(N,now*2);
		fac.resize(N+1);
		ifac.resize(N+1);
		for(size_t i=now;i<=N;i++)fac[i]=fac[i-1]*i;
		ifac[N]=1/fac[N];
		for(size_t i=N;i-->now;)ifac[i]=ifac[i+1]*(i+1);
	}
	T factorial(size_t n)
	{
		make_table(n);
		return fac[n];
	}
	T invfac(size_t n)
	{
		make_table(n);
		return ifac[n];
	}
	T P(size_t n,size_t k)
	{
		if(n<k)return 0;
		make_table(n);
		return fac[n]*ifac[n-k];
	}
	T C(size_t n,size_t k)
	{
		if(n<k)return 0;
		make_table(n);
		return fac[n]*ifac[n-k]*ifac[k];
	}
	T H(size_t n,size_t k)
	{
		if(n==0)return k==0?1:0;
		return C(n-1+k,k);
	}
};
using mint=atcoder::modint998244353;
combination<mint>C;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int T;cin>>T;
	for(;T--;)
	{
		long N;
		cin>>N;
		mint ans=0;
		{//0 step
			ans+=mint(2).pow(N*(N-1)/2);//1
		}
		if(N>=2)
		{
			ans+=mint(2).pow(N-2)*(N-1)*mint(2).pow((N-2)*(N-1)/2);
			ans+=(mint(2).pow(N)-4)/4*(N-1)*mint(2).pow((N-2)*(N-1)/2);
			if(N>=3)
			{
				long t=N*N-5*N+2;
				assert(t%2==0);
				t/=2;
				mint v=1;
				if(t>=0)v=mint(2).pow(t);
				else v=mint(2).pow(-t).inv();
				ans+=v*(mint(2).pow(N)-4*mint(3).pow(N-2))*(N-1);
			}
		}
		/*
		for(int k=1;k<=N-2;k++)
		{
			//ans+=C.C(N-1,k)*k*mint(2).pow((N-2)*(N-1)/2);
			//ans+=C.C(N-1,k)*(N-1-k)*mint(2).pow((N-2)*(N-1)/2);
			//ans-=C.C(N-1,k)*(N-1-k)*mint(2).pow((N-2)*(N-1)/2-k);
		}
		*/
		cout<<ans.val()<<"\n";
	}
}
0