結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー tailstails
提出日時 2024-12-08 02:25:34
言語 cLay
(20240714-1)
結果
TLE  
実行時間 -
コード長 455 bytes
コンパイル時間 5,013 ms
コンパイル使用メモリ 179,108 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-08 02:26:32
合計ジャッジ時間 54,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,192 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 TLE -
testcase_03 AC 140 ms
8,448 KB
testcase_04 AC 6 ms
8,320 KB
testcase_05 AC 34 ms
10,496 KB
testcase_06 AC 2,500 ms
10,496 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2,471 ms
5,248 KB
testcase_10 AC 130 ms
5,248 KB
testcase_11 AC 562 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 139 ms
5,248 KB
testcase_14 AC 272 ms
5,248 KB
testcase_15 AC 580 ms
5,248 KB
testcase_16 AC 1,172 ms
5,248 KB
testcase_17 AC 2,374 ms
5,248 KB
testcase_18 TLE -
testcase_19 AC 131 ms
5,248 KB
testcase_20 AC 558 ms
5,248 KB
testcase_21 AC 2,235 ms
5,248 KB
testcase_22 AC 289 ms
5,248 KB
testcase_23 AC 2,365 ms
5,248 KB
testcase_24 AC 148 ms
5,248 KB
testcase_25 AC 2,472 ms
5,248 KB
testcase_26 AC 151 ms
5,248 KB
testcase_27 TLE -
testcase_28 AC 2,562 ms
5,248 KB
testcase_29 AC 289 ms
5,248 KB
testcase_30 AC 2,478 ms
5,248 KB
testcase_31 AC 129 ms
5,248 KB
testcase_32 AC 549 ms
5,248 KB
testcase_33 AC 2,290 ms
5,248 KB
testcase_34 AC 142 ms
5,248 KB
testcase_35 AC 282 ms
5,248 KB
testcase_36 AC 598 ms
5,248 KB
testcase_37 AC 1,188 ms
5,248 KB
testcase_38 AC 2,421 ms
5,248 KB
testcase_39 TLE -
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 2 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 1 ms
5,248 KB
testcase_49 AC 1 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 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 1 ms
5,248 KB
testcase_66 AC 2 ms
8,448 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];
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);
	if((j+1)%w && b&1<<j+1){
			u[d](j,j+1);
	}
	if(b&1l<<j+w){
			u[d](j,j+w);
	}
	rep(j,hw){
		if(b&1<<j){
			if(u[d](j)==j){
				z+=c[u[d].size(j)];
			}
		}
	}
}
wt(a*z/mint(2)**hw);
0