結果

問題 No.2711 Connecting Lights
ユーザー ku_senjanku_senjan
提出日時 2024-03-31 14:45:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,001 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 208,008 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 19:54:05
合計ジャッジ時間 3,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 84 ms
6,816 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 23 ms
6,816 KB
testcase_12 AC 18 ms
6,820 KB
testcase_13 AC 12 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 17 ms
6,816 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 8 ms
6,816 KB
testcase_20 AC 21 ms
6,820 KB
testcase_21 AC 4 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 43 ms
6,820 KB
testcase_25 AC 65 ms
6,816 KB
testcase_26 AC 143 ms
6,816 KB
testcase_27 AC 62 ms
6,820 KB
testcase_28 AC 142 ms
6,816 KB
testcase_29 AC 12 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;
template<class T> using graph=vector<vector<T>>;
template<class T> using min_priority_queue=priority_queue<T,vector<T>,greater<T>>;
constexpr int INF32=INT_MAX/2;
constexpr ll INF64=1LL<<60;
constexpr array<int,4> DX4={0,1,0,-1};
constexpr array<int,4> DY4={-1,0,1,0};
constexpr array<int,8> DX8={0,1,1,1,0,-1,-1,-1};
constexpr array<int,8> DY8={-1,-1,0,1,1,1,0,-1};
inline int popcnt(ll n){return __builtin_popcountll(n);}
template<class T> inline bool chmax(T& a,const T& b){return a<b?a=b,true:false;}
template<class T> inline bool chmin(T& a,const T& b){return b<a?a=b,true:false;}
#define rep(i,s,n) for(ll i=(ll)(s);i<(ll)(n);i++)
#define rrep(i,s,n) for(ll i=(ll)(s);i>=(ll)(n);i--)
void _main();
int main(){
	cin.tie(nullptr);
	ios_base::sync_with_stdio(false);
	cout<<fixed<<setprecision(16);
	_main();
}

#include <atcoder/modint>
using mint = atcoder::modint998244353;

template<class T>
class Combination{
	private:
		vector<T> fac, ifac;

	public:
		Combination():Combination(0){}
		Combination(int _n):
			fac(_n+1,1),ifac(_n+1,1){
				for(int i=0; i<_n; i++) fac[i+1] = fac[i]*(i+1);
				ifac[_n] = 1/fac[_n];
				for(int i=_n; i>0; i--) ifac[i-1] = ifac[i]*i;
			}

		T p(int a, int b){ 
			if(b<0 || a<b) return 0;
			return fac[a]*ifac[a-b];
		}

		T c(int a, int b){
			if(b<0 || a<b) return 0;
			return p(a,b)*ifac[b];
		}

		T h(int a, int b){
			if(a==0 && b==0) return 1;
			if(a<=0 || b<0) return 0;
			return c(a+b-1, b);
		}
};

void _main(){
	int N, M, K; cin >> N >> M >> K;

	vector dp(M+1, vector<mint>(1U<<N));
	for(unsigned s=0; s<(1U<<N); s++){
		if(K<=popcnt(s)) dp[0][s] = mint(1);
	}
	rep(i,0,M){
		for(unsigned s=0; s<(1U<<N); s++) if(K<=popcnt(s)){
			for(unsigned ns=0; ns<(1U<<N); ns++) if(K<=popcnt(ns&s)){
				dp[i+1][ns] += dp[i][s];
			}
		}
	}

	mint ans = 0;
	for(unsigned s=0; s<(1U<<N); s++){
		if(K<=popcnt(s)) ans += dp[M-1][s];
	}
	cout << ans.val() << endl;
}
0