結果

問題 No.1 道のショートカット
ユーザー mbanmban
提出日時 2016-10-31 12:31:38
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 1,930 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 108,288 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-07-20 16:27:13
合計ジャッジ時間 4,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
19,072 KB
testcase_01 AC 23 ms
18,816 KB
testcase_02 AC 23 ms
18,944 KB
testcase_03 AC 23 ms
18,688 KB
testcase_04 AC 23 ms
18,816 KB
testcase_05 AC 23 ms
18,816 KB
testcase_06 AC 23 ms
18,944 KB
testcase_07 AC 23 ms
18,944 KB
testcase_08 AC 28 ms
19,840 KB
testcase_09 AC 28 ms
19,328 KB
testcase_10 AC 28 ms
19,456 KB
testcase_11 AC 28 ms
19,712 KB
testcase_12 AC 31 ms
19,968 KB
testcase_13 AC 31 ms
19,840 KB
testcase_14 AC 24 ms
19,072 KB
testcase_15 AC 24 ms
18,816 KB
testcase_16 AC 27 ms
19,456 KB
testcase_17 AC 23 ms
18,816 KB
testcase_18 AC 23 ms
18,944 KB
testcase_19 AC 23 ms
18,944 KB
testcase_20 AC 27 ms
19,456 KB
testcase_21 AC 26 ms
19,456 KB
testcase_22 AC 23 ms
18,816 KB
testcase_23 AC 29 ms
19,840 KB
testcase_24 AC 30 ms
19,584 KB
testcase_25 AC 26 ms
19,456 KB
testcase_26 AC 26 ms
19,456 KB
testcase_27 AC 36 ms
19,840 KB
testcase_28 AC 22 ms
18,944 KB
testcase_29 AC 28 ms
19,840 KB
testcase_30 AC 27 ms
19,456 KB
testcase_31 AC 27 ms
19,328 KB
testcase_32 AC 28 ms
19,584 KB
testcase_33 AC 28 ms
19,584 KB
testcase_34 AC 28 ms
19,712 KB
testcase_35 AC 26 ms
19,456 KB
testcase_36 AC 27 ms
19,456 KB
testcase_37 AC 27 ms
19,584 KB
testcase_38 AC 23 ms
19,072 KB
testcase_39 AC 27 ms
19,568 KB
testcase_40 AC 27 ms
19,328 KB
testcase_41 AC 26 ms
19,328 KB
testcase_42 AC 22 ms
18,816 KB
testcase_43 AC 22 ms
18,812 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;
using System.Text;
using System.Threading.Tasks;

class Magatro
{
    static int N, C, V;
    static int[] S, T, Y, M;
    static void Main()
    {
        Read();
        long[,] dp = new long[N+1, C + 1];
        for(int i = 0; i < N + 1; i++)
        {
            for(int j = 0; j < C + 1; j++)
            {
                dp[i, j] = int.MaxValue;
            }
        }
        dp[1, 0] = 0;
       for(int i = 1; i <= N; i++)
        {
            for(int j = 0; j < V; j++)
            {
                if (S[j] == i)
                {
                    for(int q = 0; q <= C; q++)
                    {
                        if (dp[i, q] != int.MaxValue)
                        {
                            if (q + Y[j] <= C)
                            {
                                
                                dp[T[j], q + Y[j]] = Math.Min(dp[i, q] + M[j], dp[T[j], q + Y[j]]);
                            }
                        }
                    }
                }
            }
        }
        long min = int.MaxValue;
        bool a = true ;
        for(int i = 0; i <= C; i++)
        {
            if (dp[N, i] != int.MaxValue)
            {
                min = Math.Min(min, dp[N, i]);
                a = false;
            }
        }
        if (a)
        {
            min = -1;
        }
        Console.WriteLine(min);
    }
    static void Read()
    {
        N = int.Parse(Console.ReadLine());
        C = int.Parse(Console.ReadLine());
        V = int.Parse(Console.ReadLine());
        S = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
        T = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
        Y = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
        M = Console.ReadLine().Split(' ').Select(s => int.Parse(s)).ToArray();
    }
}


0