結果

問題 No.402 最も海から遠い場所
ユーザー 14番14番
提出日時 2016-07-23 00:16:18
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 2,457 bytes
コンパイル時間 2,863 ms
コンパイル使用メモリ 113,940 KB
実行使用メモリ 56,292 KB
最終ジャッジ日時 2024-11-06 14:02:31
合計ジャッジ時間 8,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,292 KB
testcase_01 AC 43 ms
25,544 KB
testcase_02 AC 112 ms
27,312 KB
testcase_03 AC 38 ms
25,544 KB
testcase_04 AC 41 ms
25,396 KB
testcase_05 AC 42 ms
27,324 KB
testcase_06 AC 43 ms
25,532 KB
testcase_07 AC 42 ms
25,288 KB
testcase_08 AC 41 ms
25,780 KB
testcase_09 AC 43 ms
27,704 KB
testcase_10 AC 43 ms
25,536 KB
testcase_11 AC 56 ms
25,416 KB
testcase_12 AC 45 ms
25,288 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Text;
using System.Linq;



class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int[] inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray();

        int H = inpt[0];
        int W = inpt[1];

        Dictionary<int, Dictionary<int, int>> step = new Dictionary<int, Dictionary<int, int>>();

        char[,] map = new char[H, W];

        for(int i=0; i<H; i++) {
            if(!step.ContainsKey(i)) {
                step.Add(i, new Dictionary<int, int>());
            }
            string tmp = Reader.ReadLine();
            for(int j=0; j<tmp.Length; j++) {
                map[i,j] = tmp[j];
                if(tmp[j] == '.') {
                    step[i][j] = 0;
                }
                else if(i==0 || i == H-1 || j == 0 || j == W-1) {
                    step[i][j] = 1;
                }
            }
        }
        for(int i=0; i<=H*W/4; i++) {
            int[] yKeys = step.Where(a=>a.Value.Count(b=>b.Value == i) > 0).Select(a=>a.Key).ToArray();

            yKeys.ToList().ForEach(a=>{
                step[a].Where(b=>b.Value == i).ToList().ForEach(b=>{
                    for(int j=Math.Max(0, a-1); j<=Math.Min(H-1, a+1); j++) {
                        for(int k=Math.Max(0, b.Key - 1); k<=Math.Min(W-1, b.Key+1); k++) {
                            if((!step[j].ContainsKey(k)) && map[j,k] == '#')  {
                                step[j][k] = i+1;
                            }
                        }
                    } 
                });
            });

        }

        int ans = step.Max(a=>a.Value.Max(b=>b.Value));
        Console.WriteLine(ans);



    }


    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"

8 8
.#..#...
.######.
#####...
#####.#.
########
######.#
#####...
...####.


";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0