結果

問題 No.1 道のショートカット
ユーザー AreTrashAreTrash
提出日時 2016-06-25 20:04:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 3,201 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 109,820 KB
実行使用メモリ 24,264 KB
最終ジャッジ日時 2023-09-27 21:56:58
合計ジャッジ時間 6,210 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
23,944 KB
testcase_01 AC 56 ms
21,888 KB
testcase_02 AC 58 ms
23,964 KB
testcase_03 AC 59 ms
21,968 KB
testcase_04 AC 60 ms
19,828 KB
testcase_05 AC 57 ms
23,884 KB
testcase_06 AC 59 ms
22,032 KB
testcase_07 AC 59 ms
23,852 KB
testcase_08 AC 66 ms
24,264 KB
testcase_09 AC 66 ms
22,120 KB
testcase_10 AC 65 ms
20,164 KB
testcase_11 AC 66 ms
24,160 KB
testcase_12 AC 67 ms
22,404 KB
testcase_13 AC 68 ms
22,316 KB
testcase_14 AC 59 ms
21,996 KB
testcase_15 AC 58 ms
24,020 KB
testcase_16 AC 64 ms
22,028 KB
testcase_17 AC 60 ms
22,068 KB
testcase_18 AC 59 ms
19,972 KB
testcase_19 AC 59 ms
23,900 KB
testcase_20 AC 65 ms
22,232 KB
testcase_21 AC 64 ms
22,076 KB
testcase_22 AC 59 ms
21,976 KB
testcase_23 AC 66 ms
20,260 KB
testcase_24 AC 65 ms
22,292 KB
testcase_25 AC 64 ms
21,964 KB
testcase_26 AC 63 ms
20,176 KB
testcase_27 AC 67 ms
22,320 KB
testcase_28 AC 60 ms
21,808 KB
testcase_29 AC 65 ms
24,196 KB
testcase_30 AC 65 ms
22,116 KB
testcase_31 AC 64 ms
22,060 KB
testcase_32 AC 65 ms
24,192 KB
testcase_33 AC 66 ms
24,008 KB
testcase_34 AC 68 ms
22,332 KB
testcase_35 AC 66 ms
22,040 KB
testcase_36 AC 65 ms
22,188 KB
testcase_37 AC 66 ms
20,036 KB
testcase_38 AC 59 ms
21,872 KB
testcase_39 AC 64 ms
22,136 KB
testcase_40 AC 73 ms
22,092 KB
testcase_41 AC 63 ms
24,144 KB
testcase_42 AC 57 ms
21,952 KB
testcase_43 AC 59 ms
22,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.Linq;

namespace No1{
    public class Program{
        public static void Main(string[] args){
            var sr = new StreamReader();
            //---------------------------------
            var N = sr.Next<int>();//街の数
            var C = sr.Next<int>();//手持ちのお金
            var V = sr.Next<int>();//道の数
            var Rv = sr.Next<int>(4, V).Transpose()
                .Select(a => new {from = a[0], to = a[1], cost = a[2], time = a[3]}).OrderBy(a => a.to);

            var dp = new int[N + 1, C + 1].ToJaggedArray();
            dp[1][0] = 1;

            foreach(var r in Rv){
                for(var i = r.cost; i <= C; i++){
                    if(dp[r.from][i - r.cost] != 0) {
                        if(dp[r.to][i] == 0 || dp[r.to][i] > dp[r.from][i - r.cost] + r.time){
                            dp[r.to][i] = dp[r.from][i - r.cost] + r.time;
                        }
                    }
                }
            }

            Console.WriteLine(dp[N].Where(x => x != 0).DefaultIfEmpty(0).Min() - 1);
            //---------------------------------
        }
    }

    public static class ExMethod{
        public static T[][] Transpose<T>(this T[][] src){
            var x = src.Length;
            var y = src[0].Length;

            var ret = new T[y][];
            for(var i = 0; i < y; i++){
                ret[i] = new T[x];
                for(var j = 0; j < x; j++){
                    ret[i][j] = src[j][i];
                }
            }

            return ret;
        }

        public static T[][] ToJaggedArray<T>(this T[,] src){
            var x = src.GetLength(1);
            var y = src.GetLength(0);
            var ret = new T[y][];

            for(var i = 0; i < y; i++){
                ret[i] = new T[x];
                for(var j = 0; j < x; j++){
                    ret[i][j] = src[i, j];
                }
            }

            return ret;
        }
    }

    public class StreamReader{
        private readonly char[] _c = {' '};
        private int _index = -1;
        private string[] _input = new string[0];

        public T Next<T>(){
            if(_index == _input.Length - 1){
                _index = -1;
                while(true){
                    string rl = Console.ReadLine();
                    if(rl == null){
                        if(typeof(T).IsClass) return default(T);
                        return (T)typeof(T).GetField("MinValue").GetValue(null);
                    }
                    if(rl != ""){
                        _input = rl.Split(_c, StringSplitOptions.RemoveEmptyEntries);
                        break;
                    }
                }
            }
            return (T)Convert.ChangeType(_input[++_index], typeof(T), System.Globalization.CultureInfo.InvariantCulture);
        }

        public T[] Next<T>(int x){
            var ret = new T[x];
            for(var i = 0; i < x; ++i) ret[i] = Next<T>();
            return ret;
        }

        public T[][] Next<T>(int y, int x){
            var ret = new T[y][];
            for(var i = 0; i < y; ++i) ret[i] = Next<T>(x);
            return ret;
        }
    }
}
0