結果

問題 No.2913 二次元距離空間
ユーザー kakel-sankakel-san
提出日時 2024-10-04 23:04:48
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 3,891 bytes
コンパイル時間 10,549 ms
コンパイル使用メモリ 169,448 KB
実行使用メモリ 204,116 KB
最終ジャッジ日時 2024-10-04 23:05:03
合計ジャッジ時間 9,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,336 KB
testcase_01 AC 56 ms
30,208 KB
testcase_02 AC 50 ms
30,592 KB
testcase_03 AC 50 ms
30,208 KB
testcase_04 AC 50 ms
30,452 KB
testcase_05 AC 56 ms
30,592 KB
testcase_06 AC 51 ms
30,464 KB
testcase_07 AC 51 ms
30,208 KB
testcase_08 AC 50 ms
30,684 KB
testcase_09 AC 50 ms
30,208 KB
testcase_10 AC 51 ms
30,208 KB
testcase_11 AC 50 ms
30,464 KB
testcase_12 AC 51 ms
30,332 KB
testcase_13 AC 52 ms
30,848 KB
testcase_14 AC 50 ms
30,976 KB
testcase_15 AC 50 ms
30,812 KB
testcase_16 AC 74 ms
38,400 KB
testcase_17 AC 69 ms
38,140 KB
testcase_18 AC 138 ms
41,088 KB
testcase_19 AC 147 ms
41,856 KB
testcase_20 AC 134 ms
40,576 KB
testcase_21 AC 54 ms
33,152 KB
testcase_22 AC 53 ms
32,768 KB
testcase_23 AC 152 ms
41,460 KB
testcase_24 AC 54 ms
33,024 KB
testcase_25 AC 143 ms
41,600 KB
testcase_26 AC 59 ms
34,812 KB
testcase_27 AC 164 ms
204,116 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w) = (c[0], c[1]);
        var map = SList(h);

        var mx = new int[] { 0, 0, -1, 1 };
        var my = new int[] { -1, 1, 0, 0 };
        var mc = new long[] { 1_000_000_000, 1_000_000_000, 1, 1 };

        var INF = long.MaxValue / 2;
        var len = new long[h][];
        for (var i = 0; i < h; ++i) len[i] = Enumerable.Repeat(INF, w).ToArray();
        len[0][0] = 0;
        var q = new PriorityQueue<Pair>(h * w, false);
        q.Enqueue(new Pair(0, 0, 0));
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            if (cur.Val != len[cur.X][cur.Y]) continue;
            for (var i = 0; i < 4; ++i)
            {
                var nx = cur.X + mx[i];
                var ny = cur.Y + my[i];
                var nc = cur.Val + mc[i];
                if (nx < 0 || nx >= h || ny < 0 || ny >= w || map[nx][ny] != '.') continue;
                if (len[nx][ny] <= nc) continue;
                len[nx][ny] = nc;
                q.Enqueue(new Pair(nx, ny, nc));
            }
        }
        if (len[h - 1][w - 1] == INF) WriteLine("No");
        else
        {
            WriteLine("Yes");
            WriteLine($"{len[h - 1][w - 1] / 1_000_000_000} {len[h - 1][w - 1] % 1_000_000_000}");
        }
    }
    class Pair : IComparable<Pair>
    {
        public int X;
        public int Y;
        public long Val;
        public Pair(int x, int y, long val)
        {
            X = x; Y = y; Val = val;
        }
        public int CompareTo(Pair b)
        {
            return Val.CompareTo(b.Val);
        }
    }
    class PriorityQueue<T> where T : IComparable<T>
    {
        public T[] List;
        public int Count;
        bool IsTopMax;
        public PriorityQueue(int count, bool isTopMax)
        {
            IsTopMax = isTopMax;
            List = new T[Math.Max(128, count)];
        }
        public void Enqueue(T value)
        {
            if (Count == List.Length)
            {
                var newlist = new T[List.Length * 2];
                for (var i = 0; i < List.Length; ++i) newlist[i] = List[i];
                List = newlist;
            }
            var pos = Count;
            List[pos] = value;
            ++Count;
            while (pos > 0)
            {
                var parent = (pos - 1) / 2;
                if (Calc(List[parent], List[pos], true)) break;
                Swap(parent, pos);
                pos = parent;
            }
        }
        public T Dequeue()
        {
            --Count;
            Swap(0, Count);
            var pos = 0;
            while (true)
            {
                var child = pos * 2 + 1;
                if (child >= Count) break;
                if (child + 1 < Count && Calc(List[child + 1], List[child], false)) ++child;
                if (Calc(List[pos], List[child], true)) break;
                Swap(pos, child);
                pos = child;
            }
            return List[Count];
        }
        bool Calc(T a, T b, bool equalVal)
        {
            var ret = a.CompareTo(b);
            if (ret == 0 && equalVal) return true;
            return IsTopMax ? ret > 0 : ret < 0;
        }
        void Swap(int a, int b)
        {
            var tmp = List[a];
            List[a] = List[b];
            List[b] = tmp;
        }
    }
}
0