結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー bluemeganebluemegane
提出日時 2021-05-03 11:23:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 844 ms / 2,000 ms
コード長 4,555 bytes
コンパイル時間 2,614 ms
コンパイル使用メモリ 117,264 KB
実行使用メモリ 73,448 KB
最終ジャッジ日時 2024-07-22 00:19:34
合計ジャッジ時間 17,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,268 KB
testcase_01 AC 29 ms
26,972 KB
testcase_02 AC 409 ms
50,612 KB
testcase_03 AC 541 ms
66,788 KB
testcase_04 AC 533 ms
66,472 KB
testcase_05 AC 381 ms
69,580 KB
testcase_06 AC 395 ms
67,188 KB
testcase_07 AC 137 ms
41,204 KB
testcase_08 AC 471 ms
71,652 KB
testcase_09 AC 66 ms
35,160 KB
testcase_10 AC 215 ms
48,044 KB
testcase_11 AC 148 ms
40,944 KB
testcase_12 AC 126 ms
36,936 KB
testcase_13 AC 417 ms
54,172 KB
testcase_14 AC 492 ms
62,536 KB
testcase_15 AC 578 ms
65,384 KB
testcase_16 AC 268 ms
47,032 KB
testcase_17 AC 635 ms
69,176 KB
testcase_18 AC 190 ms
40,712 KB
testcase_19 AC 606 ms
67,220 KB
testcase_20 AC 149 ms
38,648 KB
testcase_21 AC 216 ms
47,176 KB
testcase_22 AC 530 ms
62,944 KB
testcase_23 AC 33 ms
25,056 KB
testcase_24 AC 33 ms
27,216 KB
testcase_25 AC 116 ms
39,884 KB
testcase_26 AC 310 ms
50,376 KB
testcase_27 AC 325 ms
45,140 KB
testcase_28 AC 551 ms
64,280 KB
testcase_29 AC 77 ms
35,212 KB
testcase_30 AC 608 ms
67,876 KB
testcase_31 AC 380 ms
53,892 KB
testcase_32 AC 254 ms
46,936 KB
testcase_33 AC 567 ms
67,364 KB
testcase_34 AC 190 ms
41,120 KB
testcase_35 AC 614 ms
65,904 KB
testcase_36 AC 30 ms
25,184 KB
testcase_37 AC 31 ms
25,108 KB
testcase_38 AC 29 ms
25,392 KB
testcase_39 AC 32 ms
25,184 KB
testcase_40 AC 29 ms
27,092 KB
testcase_41 AC 844 ms
73,448 KB
testcase_42 AC 210 ms
43,120 KB
testcase_43 AC 382 ms
49,692 KB
testcase_44 AC 126 ms
35,860 KB
testcase_45 AC 371 ms
51,180 KB
testcase_46 AC 27 ms
24,416 KB
testcase_47 AC 27 ms
25,044 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System.Collections.Generic;
using System;

public class PriorityQueue<T> where T : IComparable
{
    private IComparer<T> _comparer = null;
    private int _type = 0;
    private T[] _heap;
    private int _sz = 0;
    private int _count = 0;
    public PriorityQueue(int maxSize, IComparer<T> comparer)
    {
        _heap = new T[maxSize];
        _comparer = comparer;
    }
    public PriorityQueue(int maxSize, int type = 0)
    {
        _heap = new T[maxSize];
        _type = type;
    }
    private int Compare(T x, T y)
    {
        if (_comparer != null) return _comparer.Compare(x, y);
        return _type == 0 ? x.CompareTo(y) : y.CompareTo(x);
    }
    public void Push(T x)
    {
        _count++;
        var i = _sz++;
        while (i > 0)
        {
            var p = (i - 1) / 2;

            if (Compare(_heap[p], x) <= 0) break;

            _heap[i] = _heap[p];
            i = p;
        }
        _heap[i] = x;
    }
    public T Pop()
    {
        _count--;
        T ret = _heap[0];
        T x = _heap[--_sz];

        int i = 0;
        while (i * 2 + 1 < _sz)
        {
            int a = i * 2 + 1;
            int b = i * 2 + 2;

            if (b < _sz && Compare(_heap[b], _heap[a]) < 0) a = b;

            if (Compare(_heap[a], x) >= 0) break;

            _heap[i] = _heap[a];
            i = a;
        }
        _heap[i] = x;
        return ret;
    }
    public int Count()
    {
        return _count;
    }
    public T Peek()
    {
        return _heap[0];
    }
    public bool Contains(T x)
    {
        for (int i = 0; i < _sz; i++) if (x.Equals(_heap[i])) return true;
        return false;
    }
    public void Clear()
    {
        while (this.Count() > 0) this.Pop();
    }
    public IEnumerator<T> GetEnumerator()
    {
        var ret = new List<T>();
        while (this.Count() > 0)
        {
            ret.Add(this.Pop());
        }
        foreach (var r in ret)
        {
            this.Push(r);
            yield return r;
        }
    }
    public T[] ToArray()
    {
        T[] array = new T[_sz];
        int i = 0;
        foreach (var r in this)
        {
            array[i++] = r;
        }
        return array;
    }
}
public class Edge
{
    public int to { get; set; }
    public double d { get; set; }
}
public class Node : IComparable
{
    public int id { get; set; }
    public double d { get; set; }
    public int CompareTo(object obj)
    {
        var x = (Node)obj;
        if (this.d > x.d) return 1;
        else if (this.d == x.d) return 0;
        else return -1;
    }
}

public class P
{
    public int x { get; set; }
    public int y { get; set; }
}

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        var r = int.Parse(line[0]) - 1;
        var r2 = int.Parse(line[1]) - 1;
        var ps = new P[n];
        var aa = new List<Edge>[n];
        for (int i = 0; i < n; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            ps[i] = new P { x = int.Parse(line[0]), y = int.Parse(line[1]) };
            aa[i] = new List<Edge>();
        }
        for (int i = 0; i < m; i++)
        {
            line = Console.ReadLine().Trim().Split(' ');
            var p = int.Parse(line[0]) - 1;
            var q = int.Parse(line[1]) - 1;
            var wd = Sqrt((ps[p].x - ps[q].x) * (ps[p].x - ps[q].x) + (ps[p].y - ps[q].y) *
                (ps[p].y - ps[q].y));
            aa[p].Add(new Edge { to = q, d = wd });
            aa[q].Add(new Edge { to = p, d = wd });
        }
        var mind = new double[n];
        for (int i = 0; i < n; i++) mind[i] = 100000000000d;
        goDijk(aa, r, n, mind);
        Console.WriteLine(mind[r2]);
    }
    public static void goDijk(List<Edge>[] aa, int r, int n, double[] mind)
    {
        var pq = new PriorityQueue<Node>(n + 100000, 0);
        pq.Push(new Node { id = r, d = 0 });
        while (pq.Count() > 0)
        {
            var targ = pq.Pop();
            var nowd = targ.d;
            var nowid = targ.id;
            if (mind[nowid] < nowd) continue;
            mind[nowid] = nowd;
            foreach (var x in aa[nowid])
                if (nowd + x.d < mind[x.to])
                {
                    mind[x.to] = nowd + x.d;
                    pq.Push(new Node { id = x.to, d = nowd + x.d });
                }

        }
    }
}
0