結果

問題 No.2946 Puyo
ユーザー tnakao0123tnakao0123
提出日時 2024-11-02 12:45:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,302 bytes
コンパイル時間 743 ms
コンパイル使用メモリ 58,556 KB
実行使用メモリ 12,060 KB
最終ジャッジ日時 2024-11-02 12:45:54
合計ジャッジ時間 8,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,236 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 133 ms
12,060 KB
testcase_04 AC 132 ms
11,804 KB
testcase_05 AC 133 ms
11,928 KB
testcase_06 AC 132 ms
11,932 KB
testcase_07 AC 132 ms
11,928 KB
testcase_08 AC 13 ms
7,364 KB
testcase_09 AC 45 ms
10,504 KB
testcase_10 AC 9 ms
6,816 KB
testcase_11 AC 69 ms
11,212 KB
testcase_12 AC 10 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 17 ms
11,392 KB
testcase_15 AC 9 ms
7,364 KB
testcase_16 AC 23 ms
6,816 KB
testcase_17 AC 72 ms
10,624 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 30 ms
6,820 KB
testcase_20 AC 39 ms
6,816 KB
testcase_21 AC 64 ms
8,340 KB
testcase_22 AC 10 ms
6,820 KB
testcase_23 AC 39 ms
6,816 KB
testcase_24 AC 87 ms
8,748 KB
testcase_25 AC 76 ms
8,416 KB
testcase_26 AC 87 ms
8,720 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 48 ms
7,712 KB
testcase_29 AC 69 ms
9,280 KB
testcase_30 AC 37 ms
7,612 KB
testcase_31 AC 54 ms
7,796 KB
testcase_32 AC 58 ms
7,808 KB
testcase_33 AC 49 ms
7,852 KB
testcase_34 AC 72 ms
7,944 KB
testcase_35 AC 64 ms
8,080 KB
testcase_36 AC 67 ms
8,224 KB
testcase_37 AC 74 ms
8,540 KB
testcase_38 AC 56 ms
11,424 KB
testcase_39 AC 55 ms
10,472 KB
testcase_40 AC 38 ms
9,924 KB
testcase_41 AC 75 ms
8,996 KB
testcase_42 AC 71 ms
10,680 KB
testcase_43 AC 46 ms
7,816 KB
testcase_44 AC 55 ms
7,664 KB
testcase_45 AC 45 ms
7,700 KB
testcase_46 AC 29 ms
6,824 KB
testcase_47 AC 44 ms
7,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2946.cc:  No.2946 Puyo - yukicoder
 */

#include<cstdio>
#include<queue>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_H = 1000;
const int MAX_W = 1000;
const int MAX_N = MAX_H * MAX_W;
const int dxs[] = { 1, 0, -1, 0 }, dys[] = { 0, -1, 0, 1 };

/* typedef */

using qi = queue<int>;

/* global variables */

char fs[MAX_N + 4];
int gs[MAX_N], ss[MAX_N];

/* subroutines */

/* main */

int main() {
  int h, w;
  scanf("%d%d", &h, &w);
  int n = h * w;
  for (int i = 0; i < n; i++) scanf("%s", fs + i * w);

  fill(gs, gs + n, -1);
  int gn = 0;
  
  for (int st = 0; st < n; st++)
    if (gs[st] < 0 && fs[st] != '.') {
      int id = gs[st] = gn++;
      ss[id] = 1;
      qi q;
      q.push(st);

      while (! q.empty()) {
	int u = q.front(); q.pop();
	int uy = u / w, ux = u % w;
	for (int di = 0; di < 4; di++) {
	  int vy = uy + dys[di], vx = ux + dxs[di], v = vy * w + vx;
	  if (vy >= 0 && vy < h && vx >= 0 && vx < w &&
	      gs[v] < 0 && fs[v] == fs[st]) {
	    gs[v] = id, ss[id]++;
	    q.push(v);
	  }
	}
      }
    }

  for (int y = 0, u = 0; y < h; y++) {
    for (int x = 0; x < w; x++, u++) {
      if (gs[u] >= 0 && ss[gs[u]] >= 4) putchar('.');
      else putchar(fs[u]);
    }
    putchar('\n');
  }
  
  return 0;
}
0