結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー highlighterhighlighter
提出日時 2024-11-23 23:26:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,304 bytes
コンパイル時間 3,795 ms
コンパイル使用メモリ 249,352 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-23 23:26:17
合計ジャッジ時間 12,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 RE -
testcase_03 AC 604 ms
5,248 KB
testcase_04 AC 17 ms
5,248 KB
testcase_05 AC 133 ms
5,248 KB
testcase_06 RE -
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 RE -
testcase_10 AC 553 ms
5,248 KB
testcase_11 RE -
testcase_12 AC 9 ms
5,248 KB
testcase_13 AC 578 ms
5,248 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 538 ms
5,248 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 550 ms
5,248 KB
testcase_25 RE -
testcase_26 AC 577 ms
5,248 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 553 ms
5,248 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 581 ms
5,248 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 3 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 3 ms
5,248 KB
testcase_44 AC 2 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 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 1 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 1 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;

long long inv[26];

int main(){
	scanf("%d%d%lld%d",&H,&W,&K,&M);
	assert(H*W<=20);
	int d[4]={-1,1,-W,W};
	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(k==0 || k==1){
						if(v/W!=nv/W){
							continue;
						}
					}
					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