結果

問題 No.2946 Puyo
ユーザー liveworldlikeliveworldlike
提出日時 2024-10-25 21:46:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,593 bytes
コンパイル時間 1,301 ms
コンパイル使用メモリ 76,588 KB
実行使用メモリ 144,768 KB
最終ジャッジ日時 2024-10-25 21:47:49
合計ジャッジ時間 45,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 994 ms
144,640 KB
testcase_04 AC 1,036 ms
144,640 KB
testcase_05 AC 976 ms
144,640 KB
testcase_06 AC 985 ms
144,768 KB
testcase_07 AC 1,018 ms
144,768 KB
testcase_08 AC 64 ms
13,184 KB
testcase_09 AC 302 ms
48,512 KB
testcase_10 AC 56 ms
11,136 KB
testcase_11 AC 507 ms
74,496 KB
testcase_12 AC 60 ms
12,288 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 122 ms
18,048 KB
testcase_15 AC 55 ms
10,112 KB
testcase_16 AC 187 ms
26,752 KB
testcase_17 AC 643 ms
82,560 KB
testcase_18 AC 14 ms
6,816 KB
testcase_19 AC 350 ms
34,432 KB
testcase_20 AC 467 ms
43,904 KB
testcase_21 AC 824 ms
72,832 KB
testcase_22 AC 95 ms
12,032 KB
testcase_23 AC 507 ms
40,960 KB
testcase_24 AC 1,259 ms
92,544 KB
testcase_25 AC 1,085 ms
80,640 KB
testcase_26 AC 1,208 ms
89,984 KB
testcase_27 AC 19 ms
6,820 KB
testcase_28 AC 1,677 ms
71,936 KB
testcase_29 TLE -
testcase_30 AC 1,265 ms
56,576 KB
testcase_31 AC 1,947 ms
84,224 KB
testcase_32 AC 1,767 ms
84,992 KB
testcase_33 AC 1,368 ms
73,216 KB
testcase_34 AC 1,986 ms
105,728 KB
testcase_35 AC 1,483 ms
87,680 KB
testcase_36 AC 1,518 ms
90,368 KB
testcase_37 AC 1,490 ms
98,816 KB
testcase_38 AC 885 ms
71,296 KB
testcase_39 AC 791 ms
67,712 KB
testcase_40 AC 415 ms
44,800 KB
testcase_41 AC 1,050 ms
94,464 KB
testcase_42 AC 828 ms
85,504 KB
testcase_43 AC 1,773 ms
67,712 KB
testcase_44 TLE -
testcase_45 AC 1,812 ms
69,760 KB
testcase_46 AC 938 ms
44,544 KB
testcase_47 AC 1,474 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template <class K> class DSU {
public:
  map<K, ll> size;
  map<K, K> parent;
  DSU() {}
  void add(K k) {
    parent[k] = k;
    size[k] = 1;
  }
  K get(K k) {
    if (!parent.count(k)) {
      add(k);
    }
    if (parent[k] == k) {
      return k;
    }
    return parent[k] = get(parent[k]);
  }
  ll query(K k) {
    k = get(k);
    return size[k];
  }
  void merge(K a, K 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);
  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<pair<ll, ll>> dsu;
  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({i, j}, {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({i, j}, {i, j + 1});
      }
    }
  }
  for (ll i = 0; i < h; i++) {
    for (ll j = 0; j < w; j++) {
      if (dsu.query({i, j}) >= 4) {
        putc('.', stdout);
      } else {
        putc(g[i][j], stdout);
      }
    }
    putc('\n', stdout);
  }
}

int main() { solve(); }
0