結果

問題 No.1 道のショートカット
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 21:25:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,425 ms / 5,000 ms
コード長 4,569 bytes
コンパイル時間 1,127 ms
コンパイル使用メモリ 114,896 KB
実行使用メモリ 32,276 KB
最終ジャッジ日時 2024-10-10 21:25:22
合計ジャッジ時間 8,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
27,628 KB
testcase_01 AC 33 ms
27,596 KB
testcase_02 AC 33 ms
25,464 KB
testcase_03 AC 37 ms
25,520 KB
testcase_04 AC 34 ms
25,464 KB
testcase_05 AC 33 ms
27,592 KB
testcase_06 AC 33 ms
27,584 KB
testcase_07 AC 33 ms
25,420 KB
testcase_08 AC 62 ms
27,844 KB
testcase_09 AC 40 ms
25,600 KB
testcase_10 AC 62 ms
32,060 KB
testcase_11 AC 164 ms
28,232 KB
testcase_12 AC 216 ms
32,276 KB
testcase_13 AC 218 ms
30,252 KB
testcase_14 AC 34 ms
23,352 KB
testcase_15 AC 31 ms
25,264 KB
testcase_16 AC 38 ms
25,588 KB
testcase_17 AC 62 ms
25,588 KB
testcase_18 AC 34 ms
25,776 KB
testcase_19 AC 34 ms
25,288 KB
testcase_20 AC 47 ms
27,900 KB
testcase_21 AC 38 ms
25,716 KB
testcase_22 AC 33 ms
27,332 KB
testcase_23 AC 1,363 ms
27,848 KB
testcase_24 AC 1,425 ms
30,396 KB
testcase_25 AC 78 ms
31,892 KB
testcase_26 AC 59 ms
31,888 KB
testcase_27 AC 368 ms
31,968 KB
testcase_28 AC 33 ms
25,388 KB
testcase_29 AC 94 ms
30,020 KB
testcase_30 AC 41 ms
25,724 KB
testcase_31 AC 90 ms
29,840 KB
testcase_32 AC 77 ms
29,712 KB
testcase_33 AC 54 ms
30,076 KB
testcase_34 AC 276 ms
29,768 KB
testcase_35 AC 39 ms
25,644 KB
testcase_36 AC 49 ms
29,696 KB
testcase_37 AC 42 ms
25,860 KB
testcase_38 AC 34 ms
25,676 KB
testcase_39 AC 38 ms
27,956 KB
testcase_40 AC 40 ms
28,140 KB
testcase_41 AC 37 ms
25,612 KB
testcase_42 AC 33 ms
25,336 KB
testcase_43 AC 31 ms
25,004 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

class Program
{
    static string InputPattern = "InputX";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("3");
            WillReturn.Add("100");
            WillReturn.Add("3");
            WillReturn.Add("1 2 1");
            WillReturn.Add("2 3 3");
            WillReturn.Add("10 90 10");
            WillReturn.Add("10 10 50");
            //20
            //1→3 と行くと コスト10だが、単位時間が50掛かる。
            //1→2→3 と行くと 一文無しになるが、20単位時間なので早いのでこちらを選択する。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("3");
            WillReturn.Add("100");
            WillReturn.Add("3");
            WillReturn.Add("1 2 1");
            WillReturn.Add("2 3 3");
            WillReturn.Add("1 100 10");
            WillReturn.Add("10 10 50");
            //50
            //1→2→3 と行くと時間は20と短いが、コスト101かかるため選択できない。
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("10");
            WillReturn.Add("10");
            WillReturn.Add("19");
            WillReturn.Add("1 1 2 4 5 1 3 4 6 4 6 4 5 7 8 2 3 4 9");
            WillReturn.Add("3 5 5 5 6 7 7 7 7 8 8 9 9 9 9 10 10 10 10");
            WillReturn.Add("8 6 8 7 6 6 9 9 7 6 9 7 7 8 7 6 6 8 6");
            WillReturn.Add("8 9 10 4 10 3 5 9 3 4 1 8 3 1 3 6 6 10 4");
            //-1
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    struct JyoutaiDef
    {
        internal int CurrPos;
        internal int SumC;
        internal int SumM;
        internal string Path;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int N = int.Parse(InputList[0]);
        int C = int.Parse(InputList[1]);
        int[] SArr = InputList[3].Split(' ').Select(X => int.Parse(X)).ToArray();
        int[] TArr = InputList[4].Split(' ').Select(X => int.Parse(X)).ToArray();
        int[] YArr = InputList[5].Split(' ').Select(X => int.Parse(X)).ToArray();
        int[] MArr = InputList[6].Split(' ').Select(X => int.Parse(X)).ToArray();
        int UB = SArr.GetUpperBound(0);

        var stk = new Stack<JyoutaiDef>();
        JyoutaiDef WillPush;
        WillPush.CurrPos = 1;
        WillPush.SumC = WillPush.SumM = 0;
        WillPush.Path = "1";
        stk.Push(WillPush);

        //SumM[SumC]なDictの配列(ノード番号を添字とする)
        var MemoDictArr = new Dictionary<int, int>[N + 1];
        for (int I = 1; I <= N; I++) {
            MemoDictArr[I] = new Dictionary<int, int>();
        }

        bool HasAnswer = false;
        string AnswerPath = "";
        int AnswerSumM = int.MaxValue;

        while (stk.Count > 0) {
            JyoutaiDef Popped = stk.Pop();

            //クリア処理
            if (Popped.CurrPos == N) {
                HasAnswer = true;
                if (AnswerSumM > Popped.SumM) {
                    AnswerSumM = Popped.SumM;
                    AnswerPath = Popped.Path;
                    //Console.WriteLine("解候補{0}を発見", Popped.Path);
                }
                continue;
            }

            for (int I = 0; I <= UB; I++) {
                if (Popped.CurrPos != SArr[I]) continue;
                WillPush.CurrPos = TArr[I];
                WillPush.SumC = Popped.SumC + YArr[I];
                WillPush.SumM = Popped.SumM + MArr[I];
                WillPush.Path = Popped.Path + string.Format(",{0}", TArr[I]);

                if (WillPush.SumC > C) continue;

                if (MemoDictArr[WillPush.CurrPos].ContainsKey(WillPush.SumC)) {
                    if (MemoDictArr[WillPush.CurrPos][WillPush.SumC]
                        < WillPush.SumM) {
                        continue;
                    }
                }
                MemoDictArr[WillPush.CurrPos][WillPush.SumC] = WillPush.SumM;

                stk.Push(WillPush);
            }
        }
        if (HasAnswer) {
            //Console.WriteLine(new string('■', 15));
            //Console.WriteLine("解を発見");
            Console.WriteLine(AnswerSumM);
            //Console.WriteLine("経路は{0}", AnswerPath);
        }
        else Console.WriteLine(-1);
    }
}

0