結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー 沙耶花沙耶花
提出日時 2024-12-08 00:42:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 693 ms / 3,340 ms
コード長 1,269 bytes
コンパイル時間 4,704 ms
コンパイル使用メモリ 262,400 KB
実行使用メモリ 19,840 KB
最終ジャッジ日時 2024-12-08 00:42:36
合計ジャッジ時間 9,809 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 685 ms
17,152 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 304 ms
12,032 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 166 ms
8,960 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 7 ms
5,248 KB
testcase_20 AC 18 ms
7,552 KB
testcase_21 AC 48 ms
19,840 KB
testcase_22 AC 32 ms
5,248 KB
testcase_23 AC 185 ms
14,080 KB
testcase_24 AC 25 ms
5,248 KB
testcase_25 AC 301 ms
11,904 KB
testcase_26 AC 25 ms
5,248 KB
testcase_27 AC 693 ms
17,024 KB
testcase_28 AC 306 ms
10,112 KB
testcase_29 AC 29 ms
5,248 KB
testcase_30 AC 166 ms
8,832 KB
testcase_31 AC 7 ms
5,248 KB
testcase_32 AC 13 ms
5,248 KB
testcase_33 AC 31 ms
6,528 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 3 ms
5,248 KB
testcase_41 AC 3 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 3 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 3 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
testcase_65 AC 2 ms
5,248 KB
testcase_66 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL

bool f[1<<25];
mint powK[27];
mint combi[27][27];
mint ans;
int H,W;
void dfs(int bit){
	if(f[bit])return;
	f[bit] = true;
	int ok = H*W;
	rep(i,H*W){
		if((bit>>i)&1){
			ok --;
			continue;
		}
		bool tf = true;
		if(i-W>=0 && ((bit>>(i-W))&1)){
			dfs(bit|(1<<i));
			tf = false;
		}
		if(i+W<H*W && ((bit>>(i+W))&1)){
			dfs(bit|(1<<i));
			tf = false;
		}
		if(i%W!=0 && ((bit>>(i-1))&1)){
			dfs(bit|(1<<i));
			tf = false;
		}
		if(i%W!=W-1 && ((bit>>(i+1))&1)){
			dfs(bit|(1<<i));
			tf = false;
		}
		if(!tf)ok--;
	}
	ans += mint(2).pow(ok) * powK[__builtin_popcount(bit)];
}

int main(){
	
	long long K,M;
	cin>>H>>W>>K>>M;
	mint::set_mod(M);
	
	rep(i,H*W+1)powK[i] = mint(i).pow(K);
	combi[0][0] = 1;
	for(int i=1;i<=26;i++){
		for(int j=0;j<=i;j++){
			combi[i][j] += combi[i-1][j];
			if(j!=0)combi[i][j] += combi[i-1][j-1];
		}
	}
	rep(i,H*W){
		dfs(1<<i);
	}
	
	mint sum =0;
	for(int i=1;i<=H*W;i++){
		sum += mint(i).inv();
	}
	ans *= mint(2).pow(H*W).inv();
	ans *= sum;
	cout<<ans.val()<<endl;
	return 0;
}
0