結果
問題 | No.2913 二次元距離空間 |
ユーザー | kakel-san |
提出日時 | 2024-10-04 23:01:18 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,891 bytes |
コンパイル時間 | 8,207 ms |
コンパイル使用メモリ | 168,824 KB |
実行使用メモリ | 202,768 KB |
最終ジャッジ日時 | 2024-10-04 23:01:33 |
合計ジャッジ時間 | 11,598 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
30,332 KB |
testcase_01 | AC | 65 ms
30,336 KB |
testcase_02 | WA | - |
testcase_03 | AC | 62 ms
30,080 KB |
testcase_04 | AC | 64 ms
30,464 KB |
testcase_05 | AC | 64 ms
30,452 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 59 ms
30,080 KB |
testcase_10 | AC | 61 ms
30,464 KB |
testcase_11 | AC | 62 ms
30,208 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 58 ms
30,336 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 156 ms
40,704 KB |
testcase_19 | AC | 164 ms
41,856 KB |
testcase_20 | AC | 173 ms
40,576 KB |
testcase_21 | AC | 62 ms
32,896 KB |
testcase_22 | AC | 60 ms
32,764 KB |
testcase_23 | AC | 158 ms
41,472 KB |
testcase_24 | AC | 65 ms
32,760 KB |
testcase_25 | AC | 165 ms
41,344 KB |
testcase_26 | AC | 70 ms
34,812 KB |
testcase_27 | AC | 171 ms
202,768 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (90 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/
ソースコード
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; } } }