結果

問題 No.659 徘徊迷路
ユーザー AreTrashAreTrash
提出日時 2018-03-03 02:48:02
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,907 ms / 2,000 ms
コード長 3,734 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 115,156 KB
実行使用メモリ 108,524 KB
最終ジャッジ日時 2024-06-23 02:33:27
合計ジャッジ時間 15,427 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,564 KB
testcase_01 AC 28 ms
24,668 KB
testcase_02 AC 96 ms
41,264 KB
testcase_03 AC 37 ms
35,112 KB
testcase_04 AC 627 ms
83,912 KB
testcase_05 AC 28 ms
22,836 KB
testcase_06 AC 30 ms
24,968 KB
testcase_07 AC 28 ms
24,060 KB
testcase_08 AC 41 ms
31,108 KB
testcase_09 AC 960 ms
106,252 KB
testcase_10 AC 1,399 ms
106,300 KB
testcase_11 AC 1,907 ms
108,276 KB
testcase_12 AC 27 ms
26,112 KB
testcase_13 AC 1,898 ms
108,400 KB
testcase_14 AC 1,870 ms
107,752 KB
testcase_15 AC 1,852 ms
107,756 KB
testcase_16 AC 1,879 ms
108,524 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.IO;
using System.Collections.Generic;

namespace No659_2
{
    public class Program
    {
        void Solve(StreamScanner ss, StreamWriter sw)
        {
            //---------------------------------
            var H = ss.Next(Int);
            var W = ss.Next(Int);
            var T = ss.Next(Int);

            var Sy = ss.Next(Int);
            var Sx = ss.Next(Int);
            var Gy = ss.Next(Int);
            var Gx = ss.Next(Int);

            var B = ss.Next(String, H);

            int[] dx = { 0, 1, 0, -1 };
            int[] dy = { 1, 0, -1, 0 };
            var dl = 4;

            var walkCount = Math.Min(T, 100000 + T % 2);
            var dp = new double[walkCount + 1, H, W];
            dp[0, Sy, Sx] = 1.0;

            for (var k = 1; k <= walkCount; k++)
            {
                for (var y = 1; y < H - 1; y++)
                {
                    for (var x = 1; x < W - 1; x++)
                    {
                        if (B[y][x] == '#') continue;

                        var xQue = new Queue<int>();
                        var yQue = new Queue<int>();
                        var qc = 0;

                        for (var i = 0; i < dl; i++)
                        {
                            var nx = x + dx[i];
                            var ny = y + dy[i];
                            if (B[ny][nx] == '.')
                            {
                                xQue.Enqueue(nx);
                                yQue.Enqueue(ny);
                                qc++;
                            }
                        }

                        if (qc == 0) dp[k, y, x] = dp[k - 1, y, x];

                        while (xQue.Count > 0)
                        {
                            var nx = xQue.Dequeue();
                            var ny = yQue.Dequeue();
                            dp[k, ny, nx] += dp[k - 1, y, x] / qc;
                        }
                    }
                }
            }

            sw.WriteLine(dp[walkCount, Gy, Gx]);
            //---------------------------------
        }

        static void Main()
        {
            var ss = new StreamScanner(new StreamReader(Console.OpenStandardInput()));
            var sw = new StreamWriter(Console.OpenStandardOutput()) {AutoFlush = false};
            new Program().Solve(ss, sw);
            sw.Flush();
        }

        static readonly Func<string, string> String = s => s;
        static readonly Func<string, int> Int = int.Parse;
        static readonly Func<string, long> Long = long.Parse;
        static readonly Func<string, double> Double = double.Parse;
    }

    public class StreamScanner
    {
        static readonly char[] Sep = {' '};
        readonly Queue<string> buffer = new Queue<string>();
        readonly TextReader textReader;

        public StreamScanner(TextReader textReader)
        {
            this.textReader = textReader;
        }

        public T Next<T>(Func<string, T> parser)
        {
            if (buffer.Count != 0) return parser(buffer.Dequeue());
            var nextStrings = textReader.ReadLine().Split(Sep, StringSplitOptions.RemoveEmptyEntries);
            foreach (var nextString in nextStrings) buffer.Enqueue(nextString);
            return Next(parser);
        }

        public T[] Next<T>(Func<string, T> parser, int x)
        {
            var ret = new T[x];
            for (var i = 0; i < x; ++i) ret[i] = Next(parser);
            return ret;
        }

        public T[][] Next<T>(Func<string, T> parser, int x, int y)
        {
            var ret = new T[y][];
            for (var i = 0; i < y; ++i) ret[i] = Next(parser, x);
            return ret;
        }
    }
}
0