結果

問題 No.115 遠足のおやつ
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 22:47:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 380 ms / 5,000 ms
コード長 3,544 bytes
コンパイル時間 1,118 ms
コンパイル使用メモリ 109,056 KB
実行使用メモリ 25,856 KB
最終ジャッジ日時 2024-10-10 22:47:26
合計ジャッジ時間 6,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
18,816 KB
testcase_01 AC 34 ms
19,968 KB
testcase_02 AC 36 ms
19,968 KB
testcase_03 AC 29 ms
18,944 KB
testcase_04 AC 281 ms
24,448 KB
testcase_05 AC 32 ms
19,840 KB
testcase_06 AC 33 ms
19,840 KB
testcase_07 AC 35 ms
19,840 KB
testcase_08 AC 30 ms
18,944 KB
testcase_09 AC 30 ms
18,944 KB
testcase_10 AC 30 ms
18,688 KB
testcase_11 AC 29 ms
18,944 KB
testcase_12 AC 30 ms
18,816 KB
testcase_13 AC 35 ms
19,840 KB
testcase_14 AC 41 ms
20,224 KB
testcase_15 AC 156 ms
23,828 KB
testcase_16 AC 234 ms
24,096 KB
testcase_17 AC 84 ms
23,424 KB
testcase_18 AC 29 ms
18,944 KB
testcase_19 AC 36 ms
19,968 KB
testcase_20 AC 39 ms
20,096 KB
testcase_21 AC 29 ms
19,072 KB
testcase_22 AC 104 ms
23,936 KB
testcase_23 AC 36 ms
19,840 KB
testcase_24 AC 87 ms
23,936 KB
testcase_25 AC 77 ms
22,912 KB
testcase_26 AC 49 ms
20,864 KB
testcase_27 AC 63 ms
21,888 KB
testcase_28 AC 49 ms
20,864 KB
testcase_29 AC 62 ms
21,504 KB
testcase_30 AC 89 ms
23,936 KB
testcase_31 AC 51 ms
20,736 KB
testcase_32 AC 176 ms
23,936 KB
testcase_33 AC 35 ms
19,968 KB
testcase_34 AC 275 ms
24,576 KB
testcase_35 AC 79 ms
22,784 KB
testcase_36 AC 75 ms
23,168 KB
testcase_37 AC 187 ms
23,936 KB
testcase_38 AC 380 ms
25,856 KB
testcase_39 AC 379 ms
25,856 KB
testcase_40 AC 30 ms
19,072 KB
testcase_41 AC 39 ms
18,944 KB
testcase_42 AC 33 ms
19,840 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("10 9 3");
            //1 2 6
            //ルールを満たす御菓子の組み合わせは
            //(1円,2円,6円)
            //(1円,3円,5円)
            //(2円,3円,4円)
            //の3つがありますが、
            //このうち辞書順が最小になる(1円,2円,6円)の組み合わせが答えになります。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("10 9 4");
            //-1
            //残念ながら直樹くんは御菓子を買うことができませんでした・・・
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("30 40 4");
            //1 2 7 30
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int[] wkArr = InputList[0].Split(' ').Select(X => int.Parse(X)).ToArray();
        int N = wkArr[0];
        int D = wkArr[1];
        int K = wkArr[2];

        //辞書式最小パス[御菓子の数,金額合計]なDP表
        string[,] CurrDP = new string[K + 1, D + 1];
        string[,] PrevDP = new string[K + 1, D + 1];
        PrevDP[0, 0] = ""; //初期化

        Array.Copy(PrevDP, CurrDP, PrevDP.Length);
        for (int LoopN = 1; LoopN <= N; LoopN++) {
            for (int LoopK = 0; LoopK <= K - 1; LoopK++) {
                for (int LoopD = 0; LoopD <= D; LoopD++) {
                    if (PrevDP[LoopK, LoopD] == null) continue;
                    int NewIndK = LoopK + 1;
                    int NewIndD = LoopD + LoopN;
                    if (NewIndD > D) continue;
                    string NewPath = PrevDP[LoopK, LoopD]
                        + " " + LoopN.ToString().PadLeft(3, '0');

                    if (CurrDP[NewIndK, NewIndD] == null
                     || CurrDP[NewIndK, NewIndD].CompareTo(NewPath) > 0) {
                        CurrDP[NewIndK, NewIndD] = NewPath;
                    }
                }
            }
            //Console.WriteLine(new string('■', 15));
            //Console.WriteLine("{0}円の御菓子までのDPの結果", LoopN);
            //PrintDP(CurrDP);

            Array.Copy(CurrDP, PrevDP, CurrDP.Length);
        }

        if (CurrDP[K, D] != null) {
            int[] AnswerIntArr = CurrDP[K, D].Trim().Split(' ').
                Select(X => int.Parse(X)).ToArray();
            string[] AnswerStrArr = Array.ConvertAll(AnswerIntArr, X => X.ToString());
            Console.WriteLine(string.Join(" ", AnswerStrArr));
        }
        else Console.WriteLine(-1);
    }

    static void PrintDP(string[,] pCurrDP)
    {
        var sb = new System.Text.StringBuilder();
        for (int LoopK = 0; LoopK <= pCurrDP.GetUpperBound(0); LoopK++) {
            for (int LoopD = 0; LoopD <= pCurrDP.GetUpperBound(1); LoopD++) {
                if (pCurrDP[LoopK, LoopD] == null) continue;
                sb.AppendFormat("{0}個で{1}円の辞書順最小パスは{2}",
                    LoopK, LoopD, pCurrDP[LoopK, LoopD]);
                sb.AppendLine();
            }
        }
        Console.WriteLine(sb.ToString());
    }
}
0