結果

問題 No.2946 Puyo
ユーザー liveworldlikeliveworldlike
提出日時 2024-10-25 21:53:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 1,708 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 57,168 KB
実行使用メモリ 19,868 KB
最終ジャッジ日時 2024-10-25 21:54:03
合計ジャッジ時間 3,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 29 ms
19,560 KB
testcase_04 AC 30 ms
19,868 KB
testcase_05 AC 30 ms
19,520 KB
testcase_06 AC 30 ms
19,764 KB
testcase_07 AC 29 ms
19,532 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 12 ms
8,320 KB
testcase_10 AC 4 ms
6,820 KB
testcase_11 AC 16 ms
11,396 KB
testcase_12 AC 4 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 6 ms
6,820 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 9 ms
6,820 KB
testcase_17 AC 23 ms
12,284 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 14 ms
6,816 KB
testcase_20 AC 17 ms
7,936 KB
testcase_21 AC 27 ms
11,136 KB
testcase_22 AC 6 ms
6,820 KB
testcase_23 AC 17 ms
7,552 KB
testcase_24 AC 35 ms
13,448 KB
testcase_25 AC 32 ms
12,020 KB
testcase_26 AC 34 ms
13,296 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 20 ms
11,016 KB
testcase_29 AC 30 ms
14,664 KB
testcase_30 AC 18 ms
9,444 KB
testcase_31 AC 24 ms
12,524 KB
testcase_32 AC 25 ms
12,684 KB
testcase_33 AC 21 ms
11,264 KB
testcase_34 AC 28 ms
14,996 KB
testcase_35 AC 25 ms
12,944 KB
testcase_36 AC 24 ms
13,176 KB
testcase_37 AC 26 ms
14,200 KB
testcase_38 AC 19 ms
11,052 KB
testcase_39 AC 19 ms
10,496 KB
testcase_40 AC 12 ms
7,808 KB
testcase_41 AC 23 ms
13,772 KB
testcase_42 AC 20 ms
12,604 KB
testcase_43 AC 21 ms
10,600 KB
testcase_44 AC 24 ms
12,428 KB
testcase_45 AC 20 ms
10,796 KB
testcase_46 AC 14 ms
7,936 KB
testcase_47 AC 20 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <map>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
typedef __int64_t ll;

class DSU {
public:
  ll *size;
  ll *parent;
  DSU(ll n) {
    size = (ll *)calloc(n, sizeof(ll));
    parent = (ll *)calloc(n, sizeof(ll));
  }
  void add(ll k) {
    parent[k] = k;
    size[k] = 1;
  }
  ll get(ll k) {
    if (!size[k]) {
      add(k);
    }
    if (parent[k] == k) {
      return k;
    }
    return parent[k] = get(parent[k]);
  }
  ll query(ll k) {
    k = get(k);
    return size[k];
  }
  void merge(ll a, ll b) {
    a = get(a);
    b = get(b);
    if (a == b) {
      return;
    }
    if (size[a] < size[b]) {
      swap(a, b);
    }
    parent[b] = a;
    size[a] += size[b];
  }
};

void solve() {
  ll h, w;
  scanf("%ld %ld\n", &h, &w);
  auto cvt = [&](ll i, ll j) { return i * w + j; };
  char **g = (char **)malloc(h * sizeof(char *));
  for (ll i = 0; i < h; i++) {
    g[i] = (char *)malloc(w * sizeof(char));
    for (ll j = 0; j < w; j++) {
      g[i][j] = getc(stdin);
    }
    getc(stdin);
  }
  DSU dsu(h * w);
  for (ll i = 0; i < h - 1; i++) {
    for (ll j = 0; j < w; j++) {
      char a = g[i][j], b = g[i + 1][j];
      if (a == b) {
        dsu.merge(cvt(i, j), cvt(i + 1, j));
      }
    }
  }
  for (ll i = 0; i < h; i++) {
    for (ll j = 0; j < w - 1; j++) {
      char a = g[i][j], b = g[i][j + 1];
      if (a == b) {
        dsu.merge(cvt(i, j), cvt(i, j + 1));
      }
    }
  }
  for (ll i = 0; i < h; i++) {
    for (ll j = 0; j < w; j++) {
      if (dsu.query(cvt(i, j)) >= 4) {
        putc('.', stdout);
      } else {
        putc(g[i][j], stdout);
      }
    }
    putc('\n', stdout);
  }
}

int main() { solve(); }
0