結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー 👑 p-adicp-adic
提出日時 2024-11-21 11:35:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 753 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 339,992 KB
最終ジャッジ日時 2024-11-21 11:35:41
合計ジャッジ時間 24,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,880 KB
testcase_01 AC 43 ms
53,508 KB
testcase_02 TLE -
testcase_03 AC 215 ms
77,804 KB
testcase_04 AC 48 ms
63,292 KB
testcase_05 AC 50 ms
64,520 KB
testcase_06 MLE -
testcase_07 AC 44 ms
53,140 KB
testcase_08 AC 47 ms
60,556 KB
testcase_09 MLE -
testcase_10 AC 121 ms
84,832 KB
testcase_11 AC 70 ms
99,520 KB
testcase_12 AC 46 ms
61,492 KB
testcase_13 AC 64 ms
76,416 KB
testcase_14 AC 66 ms
80,520 KB
testcase_15 AC 73 ms
99,320 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 AC 136 ms
84,896 KB
testcase_20 AC 164 ms
109,412 KB
testcase_21 MLE -
testcase_22 AC 266 ms
92,924 KB
testcase_23 MLE -
testcase_24 AC 257 ms
84,716 KB
testcase_25 MLE -
testcase_26 AC 247 ms
84,920 KB
testcase_27 TLE -
testcase_28 MLE -
testcase_29 AC 267 ms
93,360 KB
testcase_30 MLE -
testcase_31 AC 117 ms
84,816 KB
testcase_32 AC 163 ms
109,424 KB
testcase_33 MLE -
testcase_34 AC 67 ms
76,708 KB
testcase_35 AC 58 ms
80,944 KB
testcase_36 AC 68 ms
100,436 KB
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 AC 37 ms
52,392 KB
testcase_41 AC 39 ms
54,104 KB
testcase_42 AC 39 ms
52,644 KB
testcase_43 AC 37 ms
53,000 KB
testcase_44 AC 37 ms
52,948 KB
testcase_45 AC 36 ms
53,696 KB
testcase_46 AC 38 ms
54,372 KB
testcase_47 AC 41 ms
52,860 KB
testcase_48 AC 41 ms
53,136 KB
testcase_49 AC 45 ms
58,480 KB
testcase_50 AC 40 ms
53,204 KB
testcase_51 AC 44 ms
52,532 KB
testcase_52 AC 37 ms
52,744 KB
testcase_53 AC 44 ms
61,296 KB
testcase_54 AC 59 ms
67,452 KB
testcase_55 AC 37 ms
53,576 KB
testcase_56 AC 50 ms
52,952 KB
testcase_57 AC 51 ms
63,076 KB
testcase_58 AC 40 ms
52,672 KB
testcase_59 AC 52 ms
60,784 KB
testcase_60 AC 38 ms
53,992 KB
testcase_61 AC 58 ms
68,868 KB
testcase_62 AC 37 ms
52,200 KB
testcase_63 AC 38 ms
52,900 KB
testcase_64 AC 38 ms
53,156 KB
testcase_65 AC 41 ms
53,692 KB
testcase_66 AC 48 ms
60,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
H,W,K,M=map(int,input().split())
HW=H*W
p=1 << HW
found=[0]*p
count=[0]*(HW+1)
dfs=[]
for h in R(H):
	for w in R(W):
		i=h*W+w
		s=1<<i
		found[s]=1
		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]:continue;
		found[t]=1
		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