結果

問題 No.697 池の数はいくつか
ユーザー AreTrashAreTrash
提出日時 2018-06-09 18:30:54
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
実行時間 -
コード長 1,773 bytes
コンパイル時間 1,027 ms
コンパイル使用メモリ 113,788 KB
実行使用メモリ 851,284 KB
最終ジャッジ日時 2024-11-25 12:45:44
合計ジャッジ時間 21,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 24 ms
26,028 KB
testcase_02 AC 24 ms
25,900 KB
testcase_03 AC 23 ms
24,068 KB
testcase_04 AC 24 ms
24,200 KB
testcase_05 AC 23 ms
23,944 KB
testcase_06 AC 24 ms
23,948 KB
testcase_07 AC 24 ms
22,196 KB
testcase_08 AC 22 ms
24,088 KB
testcase_09 AC 24 ms
26,024 KB
testcase_10 AC 24 ms
26,104 KB
testcase_11 AC 25 ms
23,816 KB
testcase_12 AC 25 ms
23,968 KB
testcase_13 AC 24 ms
21,816 KB
testcase_14 AC 24 ms
23,940 KB
testcase_15 AC 25 ms
25,772 KB
testcase_16 AC 24 ms
23,948 KB
testcase_17 AC 23 ms
24,332 KB
testcase_18 AC 23 ms
23,724 KB
testcase_19 AC 24 ms
21,940 KB
testcase_20 AC 23 ms
23,976 KB
testcase_21 AC 24 ms
25,904 KB
testcase_22 AC 23 ms
25,964 KB
testcase_23 AC 22 ms
21,684 KB
testcase_24 AC 110 ms
30,216 KB
testcase_25 AC 111 ms
28,408 KB
testcase_26 AC 111 ms
28,280 KB
testcase_27 AC 110 ms
30,096 KB
testcase_28 AC 113 ms
28,400 KB
testcase_29 TLE -
testcase_30 AC 842 ms
54,872 KB
testcase_31 TLE -
testcase_32 AC 830 ms
55,068 KB
testcase_33 AC 830 ms
53,308 KB
testcase_34 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;

namespace No697
{
    public class Program
    {
        readonly int[] dx = {0, 1, 0, -1};
        readonly int[] dy = {1, 0, -1, 0};
        readonly int dl = 4;
        bool IsInside(int x, int y) => 0 <= x && x < W && 0 <= y && y < H;

        int H;
        int W;
        bool[,] A;

        void Solve()
        {
            //---------------------------------
            var input = Console.ReadLine();

            H = int.Parse(input.Split()[0]);
            W = int.Parse(input.Split()[1]);
            A = new bool[H, W];

            for (var i = 0; i < H; i++)
            {
                input = Console.ReadLine();
                for (var j = 0; j < W; j++) A[i, j] = input[j * 2] == '1';
            }

            var ans = 0;
            for (var i = 0; i < H; i++)
            for (var j = 0; j < W; j++)
            {
                if (A[i, j])
                {
                    ans++;
                    Bfs(j, i);
                }
            }

            Console.WriteLine(ans);
            //---------------------------------
        }

        void Bfs(int x, int y)
        {
            var que = new Queue<int>();
            que.Enqueue(x);
            que.Enqueue(y);

            while (que.Count > 0)
            {
                var cx = que.Dequeue();
                var cy = que.Dequeue();
                A[cy, cx] = false;

                for (var i = 0; i < dl; i++)
                {
                    var nx = cx + dx[i];
                    var ny = cy + dy[i];
                    if (IsInside(nx, ny) && A[ny, nx]) Bfs(nx, ny);
                }
            }
        }

        static void Main()
        {
            new Program().Solve();
        }
    }
}
0