結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー tailstails
提出日時 2024-12-08 02:36:36
言語 cLay
(20240714-1)
結果
TLE  
実行時間 -
コード長 576 bytes
コンパイル時間 4,253 ms
コンパイル使用メモリ 178,712 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-08 02:37:19
合計ジャッジ時間 41,946 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 TLE -
testcase_03 AC 80 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 21 ms
5,248 KB
testcase_06 AC 1,926 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1,802 ms
5,248 KB
testcase_10 AC 111 ms
5,248 KB
testcase_11 AC 326 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 81 ms
5,248 KB
testcase_14 AC 162 ms
5,248 KB
testcase_15 AC 330 ms
5,248 KB
testcase_16 AC 662 ms
5,248 KB
testcase_17 AC 1,373 ms
5,248 KB
testcase_18 AC 2,782 ms
5,248 KB
testcase_19 AC 112 ms
5,248 KB
testcase_20 AC 480 ms
5,248 KB
testcase_21 AC 1,883 ms
5,248 KB
testcase_22 AC 229 ms
5,248 KB
testcase_23 AC 1,950 ms
5,248 KB
testcase_24 AC 113 ms
5,248 KB
testcase_25 AC 1,945 ms
5,248 KB
testcase_26 AC 109 ms
5,248 KB
testcase_27 TLE -
testcase_28 AC 1,868 ms
5,248 KB
testcase_29 AC 210 ms
5,248 KB
testcase_30 AC 1,781 ms
5,248 KB
testcase_31 AC 98 ms
5,248 KB
testcase_32 AC 399 ms
5,248 KB
testcase_33 AC 1,670 ms
5,248 KB
testcase_34 AC 81 ms
5,248 KB
testcase_35 AC 162 ms
5,248 KB
testcase_36 AC 358 ms
5,248 KB
testcase_37 AC 663 ms
5,248 KB
testcase_38 AC 1,365 ms
5,248 KB
testcase_39 AC 2,765 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 1 ms
5,248 KB
testcase_44 AC 1 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 2 ms
5,248 KB
testcase_50 AC 1 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 1 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 1 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 1 ms
5,248 KB
testcase_66 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@(h,w,k,m),hw=h*w;
unionFind u[hw+1];
rep(i,hw+1){
	u[i].malloc(hw,1);
}
mint().setmod(m);
mint a,z,c[hw+1],e[hw+1];
rep(i,hw){
	a+=mint(1)/(i+1);
}
rep(i,hw+1){
	c[i]=mint(i)**k;
}
rep(b,1,1<<hw){
	int d=BIT_popcount(b);
	copy(u[d-1].d,u[d-1].d+hw,u[d].d);
	int j=BIT_ctz(b);
	bool mdf=false;
	if((j+1)%w && b&1<<j+1){
			u[d](j,j+1);
			mdf=true;
	}
	if(b&1l<<j+w){
			u[d](j,j+w);
			mdf=true;
	}
	mint x;
	if(mdf){
		rep(j,hw){
			if(b&1<<j){
				if(u[d](j)==j){
					x+=c[u[d].size(j)];
				}
			}
		}
	}else{
		x=e[d-1]+c[1];
	}
	e[d]=x;
	z+=x;
}
wt(a*z/mint(2)**hw);
0