結果

問題 No.385 カップ麺生活
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-13 07:58:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 3,668 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 116,572 KB
実行使用メモリ 31,760 KB
最終ジャッジ日時 2024-10-13 07:59:02
合計ジャッジ時間 4,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,488 KB
testcase_01 AC 32 ms
25,496 KB
testcase_02 AC 31 ms
25,728 KB
testcase_03 AC 32 ms
25,752 KB
testcase_04 AC 44 ms
31,480 KB
testcase_05 AC 31 ms
25,388 KB
testcase_06 AC 48 ms
31,500 KB
testcase_07 AC 53 ms
31,752 KB
testcase_08 AC 35 ms
27,624 KB
testcase_09 AC 29 ms
25,432 KB
testcase_10 AC 205 ms
31,548 KB
testcase_11 AC 29 ms
25,492 KB
testcase_12 AC 41 ms
29,572 KB
testcase_13 AC 72 ms
31,760 KB
testcase_14 AC 171 ms
31,424 KB
testcase_15 AC 75 ms
29,588 KB
testcase_16 AC 32 ms
27,812 KB
testcase_17 AC 97 ms
29,736 KB
testcase_18 AC 39 ms
31,612 KB
testcase_19 AC 37 ms
29,432 KB
testcase_20 AC 51 ms
31,628 KB
testcase_21 AC 146 ms
27,708 KB
testcase_22 AC 69 ms
29,580 KB
testcase_23 AC 151 ms
31,548 KB
testcase_24 AC 122 ms
27,696 KB
testcase_25 AC 31 ms
27,532 KB
testcase_26 AC 30 ms
23,472 KB
testcase_27 AC 95 ms
29,620 KB
testcase_28 AC 81 ms
31,420 KB
testcase_29 AC 46 ms
31,632 KB
testcase_30 AC 112 ms
31,656 KB
testcase_31 AC 32 ms
25,364 KB
testcase_32 AC 32 ms
25,492 KB
testcase_33 AC 75 ms
29,584 KB
testcase_34 AC 36 ms
29,456 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("100");
            WillReturn.Add("2");
            WillReturn.Add("47 50");
            //5
            //最初に47円のカップ麺を購入すると所持金が53円になります。
            //53は素数なので所持金が100円に戻ります。

            //次にまた47円のカップ麺を購入しますが
            //53は先程使用した素数なので所持金はそのままです。

            //次に50円のカップ麺を買うと所持金が3円になって、
            //3は素数なので所持金は100円に戻ります。

            //最後に47円のカップ麺を2つ買うと所持金が6円になって
            //これ以上買うことができなくなります。
            //よってカップ麺を最大5個買うことが出来ます。
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("500");
            WillReturn.Add("5");
            WillReturn.Add("111 222 333 444 555");
            //8
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("2447");
            WillReturn.Add("3");
            WillReturn.Add("9 6 10");
            //79842
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int M = int.Parse(InputList[0]);
        Eratosthenes(M);

        int[] CArr = InputList[2].Split(' ').Select(X => int.Parse(X)).ToArray();
        Array.Sort(CArr); //昇順にソートしておく

        //最大購入数[残金]なDP表
        var DPArr = new Nullable<int>[M + 1];
        DPArr[M] = 0;

        foreach (int EachCost in CArr) {
            for (int I = M; 0 <= I; I--) {
                if (DPArr[I].HasValue == false) continue;

                int NewInd = I - EachCost;
                if (NewInd < 0) break;

                int NewVal = DPArr[I].Value + 1;

                if (DPArr[NewInd].HasValue == false ||
                    DPArr[NewInd].Value < NewVal) {
                    DPArr[NewInd] = NewVal;
                }
            }
        }
        int Answer = 0;

        //残金が素数の購入数を集計
        for (int I = 0; I <= M; I++) {
            if (DPArr[I].HasValue == false) continue;
            if (SosuuArr.Contains(I) == false) continue;
            Answer += DPArr[I].Value;
        }

        //最大の購入数を加算
        Answer += DPArr.Max(X => X ?? 0);

        Console.WriteLine(Answer);
    }

    static int[] SosuuArr;

    //エラトステネスの篩
    static void Eratosthenes(int pJyougen)
    {
        var CheckArr = new System.Collections.BitArray(pJyougen + 1);
        for (int I = 2; I <= CheckArr.Count - 1; I++) {
            CheckArr[I] = true;
        }
        for (int I = 2; I * I <= CheckArr.Count - 1; I++) {
            if (I != 2 && I % 2 == 0) continue;

            if (CheckArr[I]) {
                for (int J = I * 2; J <= CheckArr.Count - 1; J += I) {
                    CheckArr[J] = false;
                }
            }
        }
        var SosuuList = new List<int>();
        for (int I = 2; I <= CheckArr.Count - 1; I++)
            if (CheckArr[I]) SosuuList.Add(I);

        SosuuArr = SosuuList.ToArray();
    }
}

0