結果

問題 No.807 umg tours
ユーザー Tomohiko HasegawaTomohiko Hasegawa
提出日時 2019-04-03 16:17:45
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,766 bytes
コンパイル時間 3,099 ms
コンパイル使用メモリ 105,088 KB
実行使用メモリ 825,488 KB
最終ジャッジ日時 2024-05-02 23:45:33
合計ジャッジ時間 21,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
21,712 KB
testcase_01 AC 24 ms
23,632 KB
testcase_02 AC 27 ms
23,888 KB
testcase_03 AC 27 ms
18,560 KB
testcase_04 AC 27 ms
18,048 KB
testcase_05 AC 26 ms
18,304 KB
testcase_06 AC 27 ms
18,304 KB
testcase_07 AC 28 ms
18,176 KB
testcase_08 AC 24 ms
17,664 KB
testcase_09 AC 23 ms
18,048 KB
testcase_10 AC 23 ms
17,920 KB
testcase_11 AC 1,172 ms
118,272 KB
testcase_12 AC 1,090 ms
124,092 KB
testcase_13 AC 1,177 ms
106,784 KB
testcase_14 AC 452 ms
71,948 KB
testcase_15 AC 548 ms
67,048 KB
testcase_16 AC 1,465 ms
126,800 KB
testcase_17 AC 1,861 ms
144,280 KB
testcase_18 AC 2,677 ms
197,792 KB
testcase_19 AC 2,116 ms
182,532 KB
testcase_20 AC 714 ms
63,944 KB
testcase_21 AC 901 ms
71,372 KB
testcase_22 AC 313 ms
35,456 KB
testcase_23 AC 259 ms
33,024 KB
testcase_24 MLE -
testcase_25 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;
using System.Linq;
using System.Text;
using static System.Console;
using static System.Math;

namespace AtTest.yukicoder
{
    class _807
    {
        static void Main(string[] args)
        {
            Method(args);
            ReadLine();
        }

        static void Method(string[] args)
        {
            int[] nm = ReadInts();
            int n = nm[0];
            int m = nm[1];
            List<int[]>[] graph = new List<int[]>[n];
            for (int i = 0; i < n; i++) graph[i] = new List<int[]>();
            for (int i = 0; i < m; i++)
            {
                int[] abc = ReadInts();
                int a = abc[0] - 1;
                int b = abc[1] - 1;
                int c = abc[2];
                graph[a].Add(new int[2] { b, c });
                graph[b].Add(new int[2] { a, c });
            }
            long[,] dists = new long[n, 2];
            for (int i = 0; i < n; i++)
            {
                dists[i, 0] = long.MaxValue / 8;
                dists[i, 1] = long.MaxValue / 8;
            }
            Queue<long[]> queue = new Queue<long[]>();
            queue.Enqueue(new long[3] { 0, 0, 0 });
            while (queue.Count > 0)
            {
                long[] val = queue.Dequeue();
                if (dists[val[0], val[1]] <= val[2]) continue;

                dists[val[0], val[1]] = val[2];

                for (int i = 0; i < graph[val[0]].Count; i++)
                {
                    int[] to = graph[val[0]][i];
                    if (val[2] + to[1] < dists[to[0], val[1]])
                    {
                        queue.Enqueue(
                            new long[3] { to[0], val[1], val[2] + to[1] });
                    }
                    if (val[1] == 0
                        && val[2] < dists[to[0], 1])
                    {
                        queue.Enqueue(
                            new long[3] { to[0], 1, val[2] });
                    }
                }
            }
            WriteLine(0);
            for (int i = 1; i < n; i++)
            {
                WriteLine(dists[i, 0] + dists[i, 1]);
            }
        }

        private static string Read() { return ReadLine(); }
        private static int ReadInt() { return int.Parse(Read()); }
        private static long ReadLong() { return long.Parse(Read()); }
        private static double ReadDouble() { return double.Parse(Read()); }
        private static int[] ReadInts() { return Array.ConvertAll(Read().Split(), int.Parse); }
        private static long[] ReadLongs() { return Array.ConvertAll(Read().Split(), long.Parse); }
        private static double[] ReadDoubles() { return Array.ConvertAll(Read().Split(), double.Parse); }
    }
}
0