結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー 👑 p-adicp-adic
提出日時 2024-11-21 11:39:43
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 760 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 525,628 KB
最終ジャッジ日時 2024-11-21 11:41:18
合計ジャッジ時間 94,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,212 KB
testcase_01 MLE -
testcase_02 TLE -
testcase_03 MLE -
testcase_04 AC 55 ms
70,044 KB
testcase_05 MLE -
testcase_06 TLE -
testcase_07 MLE -
testcase_08 AC 44 ms
66,676 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 AC 46 ms
68,512 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 TLE -
testcase_34 AC 89 ms
76,528 KB
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 AC 37 ms
53,212 KB
testcase_41 AC 37 ms
53,464 KB
testcase_42 AC 39 ms
53,136 KB
testcase_43 AC 40 ms
52,652 KB
testcase_44 AC 36 ms
53,012 KB
testcase_45 AC 37 ms
52,600 KB
testcase_46 AC 38 ms
52,924 KB
testcase_47 AC 37 ms
54,256 KB
testcase_48 AC 38 ms
53,816 KB
testcase_49 AC 42 ms
58,152 KB
testcase_50 AC 40 ms
52,792 KB
testcase_51 AC 40 ms
52,808 KB
testcase_52 AC 42 ms
53,744 KB
testcase_53 AC 47 ms
60,320 KB
testcase_54 AC 62 ms
67,412 KB
testcase_55 AC 40 ms
52,792 KB
testcase_56 AC 39 ms
53,288 KB
testcase_57 AC 52 ms
63,116 KB
testcase_58 AC 40 ms
53,272 KB
testcase_59 AC 48 ms
61,012 KB
testcase_60 AC 38 ms
53,480 KB
testcase_61 AC 63 ms
67,368 KB
testcase_62 AC 39 ms
53,632 KB
testcase_63 AC 42 ms
52,656 KB
testcase_64 AC 40 ms
54,332 KB
testcase_65 AC 41 ms
53,552 KB
testcase_66 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
H,W,K,M=map(int,input().split())
HW=H*W
p=1<<HW
found=1<<p
count=[0]*(HW+1)
dfs=[]
for h in R(H):
	for w in R(W):
		i=h*W+w
		s=1<<i
		found|=(1<<s)
		bs=0
		for dx,dy in zip([-1,0,1,0],[0,-1,0,1]):
			if 0<=h+dx<H and 0<=w+dy<W:
				j=i+dx*W+dy
				bs|=(1<<j)
		dfs+=[[s,bs]]
while dfs:
	s,bs=dfs.pop()
	c=sum((s>>d)&1for d in R(HW))
	count[c]+=1<<(HW-c-sum((bs>>d)&1for d in R(HW)))
	for i in R(HW):
		if(bs>>i)&1<1:continue
		h,w=i//W,i%W
		t=s|(1<<i)
		if (found>>t)&1:continue;
		found|=(1<<t)
		bt=bs^(1<<i)
		for dx,dy in zip([-1,0,1,0],[0,-1,0,1]):
			if 0<=h+dx<H and 0<=w+dy<W:
				j=i+dx*W+dy
				if(s>>j)&1<1:bt|=(1<<j)
		dfs+=[[t,bt]]
print(sum(pow(c,K,M)*count[c]for c in R(1,HW+1))*sum(pow(HW-n+1,-1,M)for n in R(1,HW+1))*pow(2,-HW,M)%M)
0