結果

問題 No.1 道のショートカット
ユーザー 14番14番
提出日時 2016-03-30 02:15:15
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 3,174 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 107,264 KB
実行使用メモリ 23,296 KB
最終ジャッジ日時 2024-07-20 16:23:05
合計ジャッジ時間 3,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
18,176 KB
testcase_01 AC 24 ms
18,304 KB
testcase_02 AC 24 ms
18,048 KB
testcase_03 AC 25 ms
18,048 KB
testcase_04 AC 24 ms
18,304 KB
testcase_05 AC 24 ms
17,920 KB
testcase_06 AC 26 ms
18,048 KB
testcase_07 AC 25 ms
18,048 KB
testcase_08 AC 34 ms
20,224 KB
testcase_09 AC 30 ms
18,816 KB
testcase_10 AC 34 ms
19,968 KB
testcase_11 AC 55 ms
22,732 KB
testcase_12 AC 65 ms
23,168 KB
testcase_13 AC 59 ms
23,296 KB
testcase_14 AC 25 ms
18,432 KB
testcase_15 AC 24 ms
17,920 KB
testcase_16 AC 29 ms
18,816 KB
testcase_17 AC 25 ms
17,920 KB
testcase_18 AC 26 ms
18,176 KB
testcase_19 AC 25 ms
18,304 KB
testcase_20 AC 34 ms
19,840 KB
testcase_21 AC 29 ms
18,688 KB
testcase_22 AC 26 ms
18,432 KB
testcase_23 AC 104 ms
22,784 KB
testcase_24 AC 101 ms
22,656 KB
testcase_25 AC 42 ms
22,784 KB
testcase_26 AC 36 ms
20,480 KB
testcase_27 AC 86 ms
23,168 KB
testcase_28 AC 25 ms
17,920 KB
testcase_29 AC 39 ms
21,760 KB
testcase_30 AC 31 ms
19,072 KB
testcase_31 AC 38 ms
21,248 KB
testcase_32 AC 42 ms
22,000 KB
testcase_33 AC 34 ms
19,840 KB
testcase_34 AC 73 ms
22,800 KB
testcase_35 AC 29 ms
18,816 KB
testcase_36 AC 32 ms
19,456 KB
testcase_37 AC 30 ms
18,944 KB
testcase_38 AC 27 ms
18,048 KB
testcase_39 AC 29 ms
18,432 KB
testcase_40 AC 29 ms
18,560 KB
testcase_41 AC 28 ms
18,304 KB
testcase_42 AC 24 ms
18,176 KB
testcase_43 AC 24 ms
18,048 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.Text;

public class Program
{
    public void Proc(){
        Reader.IsDebug = false;
        int matiCount = int.Parse(Reader.ReadLine());
        this.Money = int.Parse(Reader.ReadLine());
        int roadCount = int.Parse(Reader.ReadLine());
        int[] inpt = Reader.GetInt();
        for(int i=0; i<inpt.Length; i++) {
            Road r = new Road();
            r.From = inpt[i];
            RoadList.Add(r);
            if(!RoadDic.ContainsKey(r.From)) {
                RoadDic.Add(r.From, new List<Road>());
            }
            RoadDic[r.From].Add(r);
        }
        inpt = Reader.GetInt();
        for(int i=0; i<inpt.Length; i++) {
            RoadList[i].To = inpt[i];
        }
        inpt = Reader.GetInt();
        for(int i=0; i<inpt.Length; i++) {
            RoadList[i].Cost = inpt[i];
        }
        inpt = Reader.GetInt();
        for(int i=0; i<inpt.Length; i++) {
            RoadList[i].Time = inpt[i];
        }
        int ans = this.GetAns(1, matiCount, this.Money);
        Console.WriteLine(ans);
    }
    
    private Dictionary<int, List<Road>> RoadDic = new Dictionary<int, List<Road>>();
    private Dictionary<string, int> dic = new Dictionary<string, int>();
    private int GetAns(int fromMati, int ToMati, int remain) {
        string key = fromMati + "#" + ToMati + "#" + remain;
        if(dic.ContainsKey(key)) {
            return dic[key];
        }
        if(fromMati == ToMati) {
            return 0;
        }
        if(remain < 0) {
            return -1;
        }
        int ans = int.MaxValue;
        if(RoadDic.ContainsKey(fromMati)) {
            foreach(Road r in RoadDic[fromMati]) {
                if(r.Cost <= remain) {
                    int subAns = this.GetAns(r.To, ToMati, remain - r.Cost);
                    if(subAns >= 0) {
                        ans = Math.Min(ans, subAns + r.Time);
                    }
                }
            }
        }
        if(ans == int.MaxValue) {
            ans = -1;
        }
        dic.Add(key, ans);
        return ans;
    }
    
    private List<Road> RoadList = new List<Road>();
    public class Road {
        public int From;
        public int To;
        public int Cost;
        public int Time;
    }
    
    private int Money = 0;
    
    public static void Main(string[] args)
    {
        Program prg = new Program();
        prg.Proc();
    }
}

class Reader
{
    public static bool IsDebug = true;
    
    private static System.IO.StringReader sr;
    
    public static string ReadLine() {
        if(IsDebug) {
            if(sr == null) {
                sr = new System.IO.StringReader(initStr.Trim());
            }
            return sr.ReadLine();
        } else {
            return Console.ReadLine();
        }
    }
    
    public static int[] GetInt(char delimiter = ' ') {
        string[] inpt = ReadLine().Split(delimiter);
        int[] ret = new int[inpt.Length];
        for(int i=0; i<inpt.Length; i++) {
            ret[i] = int.Parse(inpt[i]);
        }
        return ret;
    }
    
    private static string initStr = @"








";
}


0