結果

問題 No.2946 Puyo
ユーザー pengin_2000pengin_2000
提出日時 2024-10-25 21:41:54
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,229 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 31,616 KB
実行使用メモリ 10,972 KB
最終ジャッジ日時 2024-10-25 21:42:02
合計ジャッジ時間 3,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 29 ms
8,904 KB
testcase_04 AC 29 ms
9,032 KB
testcase_05 AC 29 ms
9,992 KB
testcase_06 AC 28 ms
8,776 KB
testcase_07 AC 28 ms
8,904 KB
testcase_08 AC 5 ms
7,920 KB
testcase_09 AC 11 ms
8,996 KB
testcase_10 AC 4 ms
8,988 KB
testcase_11 AC 15 ms
9,968 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 5 ms
6,824 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 6 ms
6,948 KB
testcase_17 AC 16 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 9 ms
6,816 KB
testcase_20 AC 13 ms
8,808 KB
testcase_21 AC 19 ms
8,716 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 16 ms
7,924 KB
testcase_24 AC 36 ms
6,940 KB
testcase_25 AC 32 ms
8,920 KB
testcase_26 AC 35 ms
8,684 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 18 ms
6,896 KB
testcase_29 AC 25 ms
9,008 KB
testcase_30 AC 14 ms
8,592 KB
testcase_31 AC 21 ms
8,912 KB
testcase_32 AC 21 ms
8,640 KB
testcase_33 AC 19 ms
6,820 KB
testcase_34 AC 26 ms
6,816 KB
testcase_35 AC 23 ms
6,944 KB
testcase_36 AC 24 ms
8,560 KB
testcase_37 AC 25 ms
8,416 KB
testcase_38 AC 18 ms
9,968 KB
testcase_39 AC 17 ms
8,636 KB
testcase_40 AC 11 ms
6,944 KB
testcase_41 AC 22 ms
8,688 KB
testcase_42 AC 20 ms
6,816 KB
testcase_43 AC 19 ms
10,972 KB
testcase_44 AC 22 ms
9,472 KB
testcase_45 AC 17 ms
6,980 KB
testcase_46 AC 12 ms
6,820 KB
testcase_47 AC 17 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
char g[1003][1003];
int stack[1000006], ss;
int used[1003][1003];
int ind[1000006], l;
int main()
{
	int h, w;
	scanf("%d %d", &h, &w);
	int i, j;
	for (i = 0; i < h; i++)
		scanf("%s", g[i]);
	int ii, jj, k, s, t;
	int di[4] = { -1,0,1,0 };
	int dj[4] = { 0,-1,0,1 };
	for (i = 0; i < h; i++)
		for (j = 0; j < w; j++)
			used[i][j] = 0;
	int cnt;
	char c;
	for (i = 0; i < h; i++)
	{
		for (j = 0; j < w; j++)
		{
			if (g[i][j] == '.')
				used[i][j]++;
			if (used[i][j] > 0)
				continue;
			cnt = 1;
			ind[0] = w * i + j;
			l = 1;
			c = g[i][j];
			stack[0] = w * i + j;
			ss = 1;
			used[i][j]++;
			while (ss > 0)
			{
				ss--;
				s = stack[ss];
				t = s % w;
				s /= w;
				for (k = 0; k < 4; k++)
				{
					ii = s + di[k];
					jj = t + dj[k];
					if (ii < 0 || jj < 0 || ii >= h || jj >= w)
						continue;
					if (used[ii][jj] > 0 || g[ii][jj] != c)
						continue;
					cnt++;
					used[ii][jj]++;
					ind[l] = w * ii + jj;
					l++;
					stack[ss] = w * ii + jj;
					ss++;
				}
			}
			if (cnt > 3)
			{
				for (k = 0; k < l; k++)
				{
					ii = ind[k] / w;
					jj = ind[k] % w;
					g[ii][jj] = '.';
				}
			}
		}
	}
	for (i = 0; i < h; i++)
		printf("%s\n", g[i]);
	return 0;
}
0