結果

問題 No.2946 Puyo
ユーザー bluemeganebluemegane
提出日時 2024-10-26 15:09:23
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,191 bytes
コンパイル時間 8,102 ms
コンパイル使用メモリ 167,948 KB
実行使用メモリ 47,584 KB
最終ジャッジ日時 2024-10-26 15:09:36
合計ジャッジ時間 12,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
33,024 KB
testcase_01 AC 56 ms
36,132 KB
testcase_02 WA -
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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, int sx, int sy)
    {
        var c = map[sx, sy];
        var aa = new List<(int x, int y)>();
        var visited = new bool[h, w];
        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] && map2[nx,ny] == 0)
                {
                    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 (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];
        for (int i = 0; i < h; i++)
        {
            for (int j = 0; j < w; j++)
            {
                if (map2[j, i] == 0) bfs(h, w, map, map2, i, j);
            }
        }
        print(h, w, map, map2);
    }
}
0