結果

問題 No.2946 Puyo
ユーザー kakel-sankakel-san
提出日時 2024-11-14 00:10:43
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 2,233 bytes
コンパイル時間 8,194 ms
コンパイル使用メモリ 169,692 KB
実行使用メモリ 200,284 KB
最終ジャッジ日時 2024-11-14 00:11:00
合計ジャッジ時間 16,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,188 KB
testcase_01 AC 57 ms
30,200 KB
testcase_02 AC 56 ms
30,464 KB
testcase_03 AC 124 ms
49,516 KB
testcase_04 AC 122 ms
49,900 KB
testcase_05 AC 122 ms
49,512 KB
testcase_06 AC 126 ms
49,512 KB
testcase_07 AC 122 ms
49,644 KB
testcase_08 AC 65 ms
32,512 KB
testcase_09 AC 81 ms
36,728 KB
testcase_10 AC 65 ms
32,128 KB
testcase_11 AC 94 ms
39,552 KB
testcase_12 AC 66 ms
32,364 KB
testcase_13 AC 57 ms
30,464 KB
testcase_14 AC 66 ms
33,280 KB
testcase_15 AC 64 ms
31,872 KB
testcase_16 AC 69 ms
34,432 KB
testcase_17 AC 94 ms
43,008 KB
testcase_18 AC 59 ms
30,208 KB
testcase_19 AC 110 ms
35,072 KB
testcase_20 AC 100 ms
36,716 KB
testcase_21 AC 123 ms
39,552 KB
testcase_22 AC 69 ms
32,384 KB
testcase_23 AC 121 ms
36,352 KB
testcase_24 AC 195 ms
44,032 KB
testcase_25 AC 179 ms
42,752 KB
testcase_26 AC 191 ms
43,776 KB
testcase_27 AC 90 ms
31,872 KB
testcase_28 AC 179 ms
46,080 KB
testcase_29 AC 226 ms
50,944 KB
testcase_30 AC 152 ms
42,348 KB
testcase_31 AC 202 ms
48,640 KB
testcase_32 AC 199 ms
44,268 KB
testcase_33 AC 202 ms
39,552 KB
testcase_34 AC 246 ms
46,328 KB
testcase_35 AC 204 ms
43,520 KB
testcase_36 AC 204 ms
44,664 KB
testcase_37 AC 208 ms
44,672 KB
testcase_38 AC 146 ms
39,680 KB
testcase_39 AC 161 ms
38,912 KB
testcase_40 AC 103 ms
36,600 KB
testcase_41 AC 155 ms
44,288 KB
testcase_42 AC 141 ms
43,392 KB
testcase_43 AC 177 ms
50,048 KB
testcase_44 AC 205 ms
59,520 KB
testcase_45 AC 175 ms
48,000 KB
testcase_46 AC 137 ms
37,504 KB
testcase_47 AC 168 ms
200,284 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w) = (c[0], c[1]);
        var g = SList(h);
        var m = new char[h][];
        for (var i = 0; i < h; ++i) m[i] = g[i].ToCharArray();
        var visited = new int[h][];
        for (var i = 0; i < h; ++i) visited[i] = new int[w];
        var vid = 1;
        for (var i = 0; i < h; ++i) for (var j = 0; j < w; ++j)
        {
            if (visited[i][j] != 0) continue;
            if (m[i][j] == '.') continue;
            visited[i][j] = vid;
            ++vid;
            var size = DFS(m, i, j, visited);
            if (size >= 4) DFS2(m, i, j, visited);
        }
        WriteLine(string.Join("\n", m.Select(mi => string.Concat(mi))));
    }
    static int[] mx = new int[] { 0, 0, -1, 1 };
    static int[] my = new int[] { -1, 1, 0, 0 };
    static int DFS(char[][] m, int x, int y, int[][] visited)
    {
        var size = 1;
        for (var i = 0; i < 4; ++i)
        {
            var nx = x + mx[i];
            var ny = y + my[i];
            if (nx < 0 || nx >= m.Length || ny < 0 || ny >= m[0].Length) continue;
            if (m[x][y] != m[nx][ny]) continue;
            if (visited[nx][ny] != 0) continue;
            visited[nx][ny] = visited[x][y];
            size += DFS(m, nx, ny, visited);
        }
        return size;
    }
    static void DFS2(char[][] m, int x, int y, int[][] visited)
    {
        m[x][y] = '.';
        for (var i = 0; i < 4; ++i)
        {
            var nx = x + mx[i];
            var ny = y + my[i];
            if (nx < 0 || nx >= m.Length || ny < 0 || ny >= m[0].Length) continue;
            if (visited[x][y] != visited[nx][ny]) continue;
            if (m[nx][ny] == '.') continue;
            DFS2(m, nx, ny, visited);
        }
    }
}
0