結果

問題 No.1382 Travel in Mitaru city
ユーザー kakel-sankakel-san
提出日時 2024-07-24 23:10:09
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 3,662 bytes
コンパイル時間 10,349 ms
コンパイル使用メモリ 169,436 KB
実行使用メモリ 190,828 KB
最終ジャッジ日時 2024-07-24 23:10:38
合計ジャッジ時間 27,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,304 KB
testcase_01 AC 53 ms
30,464 KB
testcase_02 AC 55 ms
30,336 KB
testcase_03 AC 53 ms
30,464 KB
testcase_04 AC 54 ms
30,456 KB
testcase_05 AC 57 ms
30,336 KB
testcase_06 AC 263 ms
60,492 KB
testcase_07 AC 185 ms
51,552 KB
testcase_08 AC 117 ms
40,832 KB
testcase_09 AC 268 ms
60,680 KB
testcase_10 AC 267 ms
60,484 KB
testcase_11 AC 257 ms
65,088 KB
testcase_12 AC 296 ms
65,280 KB
testcase_13 AC 277 ms
65,332 KB
testcase_14 AC 222 ms
60,672 KB
testcase_15 AC 256 ms
65,120 KB
testcase_16 AC 344 ms
68,088 KB
testcase_17 AC 313 ms
68,344 KB
testcase_18 AC 325 ms
68,480 KB
testcase_19 AC 323 ms
68,352 KB
testcase_20 AC 367 ms
68,212 KB
testcase_21 AC 330 ms
68,224 KB
testcase_22 AC 336 ms
68,224 KB
testcase_23 AC 360 ms
68,220 KB
testcase_24 AC 331 ms
68,352 KB
testcase_25 AC 319 ms
68,480 KB
testcase_26 AC 247 ms
68,224 KB
testcase_27 AC 286 ms
68,216 KB
testcase_28 AC 219 ms
68,352 KB
testcase_29 AC 224 ms
68,528 KB
testcase_30 AC 204 ms
68,264 KB
testcase_31 AC 179 ms
66,688 KB
testcase_32 AC 188 ms
68,224 KB
testcase_33 AC 209 ms
67,560 KB
testcase_34 AC 167 ms
65,244 KB
testcase_35 AC 110 ms
51,456 KB
testcase_36 AC 160 ms
66,972 KB
testcase_37 AC 72 ms
36,992 KB
testcase_38 AC 174 ms
67,712 KB
testcase_39 AC 83 ms
41,856 KB
testcase_40 AC 160 ms
65,792 KB
testcase_41 AC 189 ms
66,376 KB
testcase_42 AC 176 ms
67,956 KB
testcase_43 AC 168 ms
66,720 KB
testcase_44 AC 103 ms
44,672 KB
testcase_45 AC 172 ms
66,280 KB
testcase_46 AC 118 ms
43,392 KB
testcase_47 AC 300 ms
68,824 KB
testcase_48 AC 227 ms
61,820 KB
testcase_49 AC 315 ms
69,376 KB
testcase_50 AC 174 ms
52,352 KB
testcase_51 AC 179 ms
64,844 KB
testcase_52 AC 188 ms
66,432 KB
testcase_53 AC 84 ms
40,960 KB
testcase_54 AC 132 ms
51,584 KB
testcase_55 AC 193 ms
66,164 KB
testcase_56 AC 97 ms
45,416 KB
testcase_57 AC 131 ms
59,360 KB
testcase_58 AC 74 ms
36,096 KB
testcase_59 AC 94 ms
44,800 KB
testcase_60 AC 178 ms
66,048 KB
testcase_61 AC 66 ms
33,152 KB
testcase_62 AC 55 ms
30,464 KB
testcase_63 AC 127 ms
40,192 KB
testcase_64 AC 71 ms
34,176 KB
testcase_65 AC 55 ms
30,848 KB
testcase_66 AC 61 ms
31,616 KB
testcase_67 AC 66 ms
33,024 KB
testcase_68 AC 75 ms
34,560 KB
testcase_69 AC 64 ms
31,616 KB
testcase_70 AC 81 ms
190,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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 int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    static int[][] NMap(int n) => Enumerable.Repeat(0, n).Select(_ => NMi).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m, s, t) = (c[0], c[1], c[2], c[3]);
        --s;
        --t;
        var p = NList;
        var map = NMap(m);
        var tree = new List<int>[n];
        for (var i = 0; i < n; ++i) tree[i] = new List<int>();
        foreach (var edge in map)
        {
            tree[edge[0]].Add(edge[1]);
            tree[edge[1]].Add(edge[0]);
        }
        var x = p[s];
        var y = 0;
        var q = new PriorityQueue<Pair>(n, true);
        q.Enqueue(new Pair(s, p[s]));
        var visited = new bool[n];
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            if (visited[cur.Pos]) continue;
            visited[cur.Pos] = true;
            if (x > cur.Val)
            {
                x = cur.Val;
                ++y;
            }
            foreach (var next in tree[cur.Pos])
            {
                if (visited[next]) continue;
                q.Enqueue(new Pair(next, p[next]));
            }
        }
        WriteLine(y);
    }
    class Pair : IComparable<Pair>
    {
        public int Pos;
        public int Val;
        public Pair(int pos, int val)
        {
            Pos = pos; 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