結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー highlighterhighlighter
提出日時 2024-11-23 20:44:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,225 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 250,972 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-23 20:44:39
合計ジャッジ時間 11,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 RE -
testcase_03 AC 542 ms
5,248 KB
testcase_04 AC 14 ms
5,248 KB
testcase_05 AC 114 ms
5,248 KB
testcase_06 RE -
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 RE -
testcase_10 WA -
testcase_11 RE -
testcase_12 AC 8 ms
5,248 KB
testcase_13 AC 527 ms
5,248 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 WA -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 WA -
testcase_25 RE -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 WA -
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 493 ms
5,248 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
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 2 ms
5,248 KB
testcase_44 AC 1 ms
5,248 KB
testcase_45 AC 1 ms
5,248 KB
testcase_46 AC 1 ms
5,248 KB
testcase_47 AC 1 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 2 ms
5,248 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 2 ms
5,248 KB
testcase_59 WA -
testcase_60 AC 2 ms
5,248 KB
testcase_61 WA -
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 2 ms
5,248 KB
testcase_66 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:32:23: warning: iteration 24 invokes undefined behavior [-Waggressive-loop-optimizations]
   32 |                 inv[i]=M-inv[M%i]*(M/i)%M;
      |                 ~~~~~~^~~~~~~~~~~~~~~~~~~
main.cpp:31:22: note: within this loop
   31 |         for(int i=2;i<=26;i++){
      |                     ~^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

long long powers[26];

int H,W,M;
long long K;

int d[4]={-1,1,-W,W};
long long inv[26];

int main(){
	scanf("%d%d%lld%d",&H,&W,&K,&M);
	assert(H*W<=20);
	powers[1]=1;
	for(int i=2;i<=25;i++){
		powers[i]=1;
		long long mul=i;
		long long t=K;
		while(t){
			if(t&1){
				powers[i]*=mul;
				powers[i]%=M;
			}
			mul*=mul;
			mul%=M;
			t>>=1;
		}
	}
	inv[1]=1;
	for(int i=2;i<=26;i++){
		inv[i]=M-inv[M%i]*(M/i)%M;
	}
	long long res=0;
	for(int i=0;i<(1<<H*W);i++){
		//+-1,+-Wが隣り合う
		int b=0;
		for(int j=0;j<H*W;j++){
			if(!(i&(1<<j))){
				continue;
			}
			if((b&(1<<j))){
				continue;
			}
			b|=(1<<j);
			queue<int> que;
			que.push(j);
			int count=1;
			while(!que.empty()){
				int v=que.front();
				que.pop();
				for(int k=0;k<4;k++){
					int nv=v+d[k];
					if(nv>=H*W || nv<0){
						continue;
					}
					if(!(i&(1<<nv))){
						continue;
					}
					if((b&(1<<nv))){
						continue;
					}
					b|=(1<<nv);
					que.push(nv);
					count++;
				}
			}
			res+=powers[count];
			res%=M;
		}
	}
	long long ans=0;
	for(int i=1;i<=H*W;i++){
		ans+=inv[i];
		ans%=M;
	}
	for(int i=0;i<H*W;i++){
		ans*=(M+1)/2;
		ans%=M;
	}
	cout << ans*res%M << endl;
}
0