結果

問題 No.2946 Puyo
ユーザー bluemeganebluemegane
提出日時 2024-10-26 16:56:11
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 2,259 bytes
コンパイル時間 8,464 ms
コンパイル使用メモリ 165,004 KB
実行使用メモリ 202,732 KB
最終ジャッジ日時 2024-10-26 16:56:33
合計ジャッジ時間 20,251 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
29,696 KB
testcase_01 AC 55 ms
29,568 KB
testcase_02 AC 56 ms
29,696 KB
testcase_03 AC 374 ms
60,856 KB
testcase_04 AC 407 ms
60,708 KB
testcase_05 AC 376 ms
60,616 KB
testcase_06 AC 375 ms
60,612 KB
testcase_07 AC 406 ms
60,588 KB
testcase_08 AC 101 ms
43,520 KB
testcase_09 AC 185 ms
56,448 KB
testcase_10 AC 97 ms
40,820 KB
testcase_11 AC 245 ms
61,824 KB
testcase_12 AC 101 ms
42,496 KB
testcase_13 AC 60 ms
29,824 KB
testcase_14 AC 134 ms
47,360 KB
testcase_15 AC 93 ms
38,272 KB
testcase_16 AC 139 ms
54,896 KB
testcase_17 AC 253 ms
57,856 KB
testcase_18 AC 61 ms
30,208 KB
testcase_19 AC 149 ms
54,400 KB
testcase_20 AC 170 ms
56,048 KB
testcase_21 AC 261 ms
61,952 KB
testcase_22 AC 93 ms
37,376 KB
testcase_23 AC 166 ms
54,016 KB
testcase_24 AC 255 ms
58,316 KB
testcase_25 AC 236 ms
58,240 KB
testcase_26 AC 279 ms
58,088 KB
testcase_27 AC 76 ms
31,744 KB
testcase_28 AC 141 ms
47,360 KB
testcase_29 AC 161 ms
53,500 KB
testcase_30 AC 130 ms
44,544 KB
testcase_31 AC 172 ms
50,432 KB
testcase_32 AC 190 ms
52,608 KB
testcase_33 AC 211 ms
52,736 KB
testcase_34 AC 236 ms
59,440 KB
testcase_35 AC 216 ms
58,368 KB
testcase_36 AC 221 ms
58,524 KB
testcase_37 AC 244 ms
58,876 KB
testcase_38 AC 241 ms
57,600 KB
testcase_39 AC 208 ms
57,600 KB
testcase_40 AC 171 ms
56,704 KB
testcase_41 AC 253 ms
59,404 KB
testcase_42 AC 243 ms
58,348 KB
testcase_43 AC 123 ms
45,824 KB
testcase_44 AC 132 ms
48,544 KB
testcase_45 AC 123 ms
45,184 KB
testcase_46 AC 116 ms
41,196 KB
testcase_47 AC 147 ms
202,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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.Collections.Generic;
using System;

public class Hello
{
    public static int[] dx, dy;
    static void Main()
    {
        dx = new int[] { 0, 1, 0, -1 };
        dy = new int[] { 1, 0, -1, 0 };
        string[] line = Console.ReadLine().Trim().Split(' ');
        var h = int.Parse(line[0]);
        var w = int.Parse(line[1]);
        var map = new char[h, w];
        for (int i = 0; i < h; i++)
        {
            var s = Console.ReadLine().Trim();
            for (int j = 0; j < w; j++) map[i, j] = s[j];
        }
        getAns(h, w, map);
    }
    static void bfs(int h, int w, char[,] map, int[,] map2,bool [,] visited, int sx, int sy)
    {
        var c = map[sx, sy];
        var aa = new List<(int x, int y)>();
        var q = new Queue<(int x, int y)>();
        q.Enqueue((sx, sy));
        visited[sx, sy] = true;
        aa.Add((sx, sy));
        while (q.Count > 0)
        {
            var t = q.Dequeue();
            for (int i = 0; i < 4; i++)
            {
                var nx = t.x + dx[i];
                var ny = t.y + dy[i];
                if (nx >= 0 && nx < h && ny >= 0 && ny < w && 
                    map[nx, ny] == c && !visited[nx, ny] )
                {
                    aa.Add((nx, ny));
                    q.Enqueue((nx, ny));
                    visited[nx, ny] = true;
                }
            }
        }
        var aac = aa.Count;
         foreach (var z in aa) map2[z.x, z.y] = aac;
    }
    static void print(int h, int w, char[,] map, int[,] map2)
    {
        var p = new char[w];
        for (int i = 0; i < h; i++)
        {
            for (int j = 0; j < w; j++)
            {
                if (map[i,j] == '.') { p[j] = '.'; continue; }
                if (map2[i, j] >= 4) p[j] = '.';
                else p[j] = map[i, j];
            }
            Console.WriteLine(new string(p));
        }
    }
    static void getAns(int h, int w, char[,] map)
    {
        var map2 = new int[h, w];
        var visited = new bool[h, w];
        for (int i = 0; i < h; i++)
        {
            for (int j = 0; j < w; j++)
            {
                if (map2[i,j] == 0) bfs(h, w, map, map2,visited, i, j);
            }
        }
        print(h, w, map, map2);
    }
}
0