AtCoderのABC    次のABCの問題へ    前のABCの問題へ

ABC012-D バスと避けられない運命


問題へのリンク


C#のソース

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("3 2");
            WillReturn.Add("1 2 10");
            WillReturn.Add("2 3 10");
            //10
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("5 5");
            WillReturn.Add("1 2 12");
            WillReturn.Add("2 3 14");
            WillReturn.Add("3 4 7");
            WillReturn.Add("4 5 9");
            WillReturn.Add("5 1 18");
            //26
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("4 6");
            WillReturn.Add("1 2 1");
            WillReturn.Add("2 3 1");
            WillReturn.Add("3 4 1");
            WillReturn.Add("4 1 1");
            WillReturn.Add("1 3 1");
            WillReturn.Add("4 2 1");
            //1
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();

        int[] wkArr = { };
        Action<string> SplitAct = pStr =>
            wkArr = pStr.Split(' ').Select(X => int.Parse(X)).ToArray();

        SplitAct(InputList[0]);
        int N = wkArr[0];
        int UB = N - 1;

        int[,] KyoriArr = new int[UB + 1, UB + 1];

        const int INFTY = int.MaxValue;

        // 初期化処理
        for (int I = 0; I <= UB; I++) {
            for (int J = 0; J <= UB; J++) {
                KyoriArr[I, J] = (I == J) ? 0 : INFTY;
            }
        }

        foreach (string EachStr in InputList.Skip(1)) {
            SplitAct(EachStr);
            KyoriArr[wkArr[0] - 1, wkArr[1] - 1] = wkArr[2];
            KyoriArr[wkArr[1] - 1, wkArr[0] - 1] = wkArr[2];
        }

        // ワーシャルフロイド法
        for (int K = 0; K <= UB; K++) {
            for (int I = 0; I <= UB; I++) {
                if (KyoriArr[I, K] == INFTY) continue;
                for (int J = 0; J <= UB; J++) {
                    if (KyoriArr[K, J] == INFTY) continue;
                    int CurrKouho = KyoriArr[I, K] + KyoriArr[K, J];
                    if (KyoriArr[I, J] > CurrKouho) {
                        KyoriArr[I, J] = CurrKouho;
                    }
                }
            }
        }

        int Answer = int.MaxValue;
        for (int I = 0; I <= UB; I++) {
            int AnswerKouho = int.MinValue;
            for (int J = 0; J <= UB; J++) {
                AnswerKouho = Math.Max(AnswerKouho, KyoriArr[I, J]);
            }
            Answer = Math.Min(Answer, AnswerKouho);
        }
        Console.WriteLine(Answer);
    }
}


解説

ワーシャルフロイド法で全点対間最短距離を求めてます。