結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー 👑 p-adicp-adic
提出日時 2024-11-21 15:41:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 907 ms / 3,340 ms
コード長 771 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 84,800 KB
最終ジャッジ日時 2024-11-21 15:41:16
合計ジャッジ時間 9,257 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,916 KB
testcase_01 AC 33 ms
53,136 KB
testcase_02 AC 892 ms
84,404 KB
testcase_03 AC 43 ms
61,768 KB
testcase_04 AC 37 ms
59,576 KB
testcase_05 AC 40 ms
59,456 KB
testcase_06 AC 484 ms
80,340 KB
testcase_07 AC 36 ms
52,568 KB
testcase_08 AC 36 ms
53,220 KB
testcase_09 AC 342 ms
80,440 KB
testcase_10 AC 73 ms
76,420 KB
testcase_11 AC 45 ms
62,472 KB
testcase_12 AC 39 ms
58,700 KB
testcase_13 AC 45 ms
61,772 KB
testcase_14 AC 42 ms
61,180 KB
testcase_15 AC 43 ms
62,232 KB
testcase_16 AC 48 ms
64,300 KB
testcase_17 AC 47 ms
66,948 KB
testcase_18 AC 48 ms
70,328 KB
testcase_19 AC 70 ms
76,172 KB
testcase_20 AC 76 ms
77,216 KB
testcase_21 AC 112 ms
80,364 KB
testcase_22 AC 109 ms
76,636 KB
testcase_23 AC 330 ms
80,120 KB
testcase_24 AC 113 ms
76,284 KB
testcase_25 AC 461 ms
80,120 KB
testcase_26 AC 116 ms
76,400 KB
testcase_27 AC 907 ms
84,800 KB
testcase_28 AC 460 ms
80,716 KB
testcase_29 AC 112 ms
76,664 KB
testcase_30 AC 348 ms
80,804 KB
testcase_31 AC 71 ms
76,416 KB
testcase_32 AC 83 ms
77,176 KB
testcase_33 AC 108 ms
80,148 KB
testcase_34 AC 44 ms
63,604 KB
testcase_35 AC 44 ms
60,952 KB
testcase_36 AC 46 ms
63,500 KB
testcase_37 AC 50 ms
65,200 KB
testcase_38 AC 50 ms
67,624 KB
testcase_39 AC 48 ms
71,224 KB
testcase_40 AC 35 ms
53,352 KB
testcase_41 AC 35 ms
53,280 KB
testcase_42 AC 36 ms
53,344 KB
testcase_43 AC 36 ms
53,816 KB
testcase_44 AC 36 ms
53,416 KB
testcase_45 AC 49 ms
52,136 KB
testcase_46 AC 36 ms
52,708 KB
testcase_47 AC 35 ms
54,124 KB
testcase_48 AC 35 ms
52,944 KB
testcase_49 AC 37 ms
52,784 KB
testcase_50 AC 35 ms
53,076 KB
testcase_51 AC 36 ms
54,084 KB
testcase_52 AC 37 ms
53,672 KB
testcase_53 AC 37 ms
53,876 KB
testcase_54 AC 45 ms
63,424 KB
testcase_55 AC 36 ms
53,368 KB
testcase_56 AC 36 ms
53,188 KB
testcase_57 AC 43 ms
61,392 KB
testcase_58 AC 36 ms
52,600 KB
testcase_59 AC 36 ms
54,020 KB
testcase_60 AC 37 ms
53,080 KB
testcase_61 AC 43 ms
62,456 KB
testcase_62 AC 35 ms
52,620 KB
testcase_63 AC 37 ms
53,292 KB
testcase_64 AC 37 ms
53,552 KB
testcase_65 AC 39 ms
53,752 KB
testcase_66 AC 37 ms
53,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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