結果

問題 No.2983 Christmas Color Grid (Advent Calender ver.)
ユーザー ygussanyygussany
提出日時 2024-12-08 01:20:56
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 2,081 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 32,384 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-08 01:22:05
合計ジャッジ時間 65,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
6,784 KB
testcase_02 TLE -
testcase_03 AC 233 ms
7,040 KB
testcase_04 AC 7 ms
10,496 KB
testcase_05 AC 41 ms
6,784 KB
testcase_06 TLE -
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 TLE -
testcase_10 AC 188 ms
6,816 KB
testcase_11 AC 765 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 179 ms
5,248 KB
testcase_14 AC 371 ms
5,248 KB
testcase_15 AC 753 ms
5,248 KB
testcase_16 AC 1,566 ms
5,248 KB
testcase_17 AC 3,280 ms
6,820 KB
testcase_18 TLE -
testcase_19 AC 195 ms
5,248 KB
testcase_20 AC 788 ms
5,248 KB
testcase_21 AC 3,297 ms
6,820 KB
testcase_22 AC 419 ms
5,248 KB
testcase_23 TLE -
testcase_24 AC 193 ms
5,248 KB
testcase_25 TLE -
testcase_26 AC 196 ms
5,248 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 399 ms
5,248 KB
testcase_30 TLE -
testcase_31 AC 199 ms
5,248 KB
testcase_32 AC 817 ms
5,248 KB
testcase_33 TLE -
testcase_34 AC 220 ms
5,248 KB
testcase_35 AC 482 ms
5,248 KB
testcase_36 AC 967 ms
5,248 KB
testcase_37 AC 2,011 ms
5,248 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 1 ms
5,248 KB
testcase_41 AC 1 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 1 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 1 ms
5,248 KB
testcase_49 AC 1 ms
5,248 KB
testcase_50 AC 1 ms
5,248 KB
testcase_51 AC 1 ms
5,248 KB
testcase_52 AC 1 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 1 ms
5,248 KB
testcase_55 AC 1 ms
5,248 KB
testcase_56 AC 1 ms
5,248 KB
testcase_57 AC 1 ms
5,248 KB
testcase_58 AC 1 ms
5,248 KB
testcase_59 AC 1 ms
5,248 KB
testcase_60 AC 1 ms
5,248 KB
testcase_61 AC 1 ms
5,248 KB
testcase_62 AC 1 ms
5,248 KB
testcase_63 AC 1 ms
5,248 KB
testcase_64 AC 1 ms
5,248 KB
testcase_65 AC 1 ms
5,248 KB
testcase_66 AC 1 ms
8,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:5:11: warning: built-in function 'pow' declared as non-function [-Wbuiltin-declaration-mismatch]
    5 | long long pow[26];
      |           ^~~

ソースコード

diff #

#include <stdio.h>

const int bit[26] = {1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288, 1048576, 2097152, 4194304, 8388608, 16777216, 33554432};
int Mod;
long long pow[26];

long long div_mod(long long x, long long y, long long z)
{
	if (x % y == 0) return x / y;
	else return (div_mod((1 + x / y) * y - x, (z % y), y) * z + x) / y;
}

long long pow_mod(int n, long long k)
{
	if (n == 0) return 0;
	
	long long N, ans = 1;
	for (N = n; k > 0; k >>= 1, N = N * N % Mod) if (k & 1) ans = ans * N % Mod;
	return ans;
}

long long calc(int H, int W, int x)
{
	int i, j, k;
	static char S[30][30] = {};
	for (i = 1, k = 0; i <= H; i++) {
		for (j = 1; j <= W; j++, k++) {
			if ((x & bit[k]) != 0) S[i][j] = '.';
			else S[i][j] = '#';
		}
	}
	
	int ii, jj;
	static int q[26][2], head, tail;
	long long ans = 0;
	for (ii = 1; ii <= H; ii++) {
		for (jj = 1; jj <= W; jj++) {
			if (S[ii][jj] == '#') continue;
			S[ii][jj] = '#';
			q[0][0] = ii;
			q[0][1] = jj;
			for (head = 0, tail = 1; head < tail; head++) {
				i = q[head][0];
				j = q[head][1];
				if (S[i-1][j] == '.') {
					S[i-1][j] = '#';
					q[tail][0] = i - 1;
					q[tail++][1] = j;
				}
				if (S[i+1][j] == '.') {
					S[i+1][j] = '#';
					q[tail][0] = i + 1;
					q[tail++][1] = j;
				}
				if (S[i][j-1] == '.') {
					S[i][j-1] = '#';
					q[tail][0] = i;
					q[tail++][1] = j - 1;
				}
				if (S[i][j+1] == '.') {
					S[i][j+1] = '#';
					q[tail][0] = i;
					q[tail++][1] = j + 1;
				}
			}
			ans += pow[tail];
		}
	}
	return ans % Mod;
}

int main()
{
	int H, W;
	long long K;
	scanf("%d %d %lld %d", &H, &W, &K, &Mod);
	
	int i, x;
	long long tmp, inv[26], invv = div_mod(1, pow_mod(2, H * W), Mod), ans = 0;
	for (i = 1, pow[0] = 0; i <= H * W; i++) {
		inv[i] = div_mod(1, i, Mod);
		pow[i] = pow_mod(i, K);
	}
	for (x = 0; x < bit[H*W]; x++) ans += calc(H, W, x);
	for (i = 1, tmp = 0; i <= H * W; i++) tmp += inv[i];
	tmp %= Mod;
	ans = ans % Mod * invv % Mod * tmp % Mod;
	printf("%lld\n", ans % Mod);
	fflush(stdout);
	return 0;
}
0