結果

問題 No.385 カップ麺生活
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-13 07:58:35
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,668 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 114,540 KB
実行使用メモリ 27,612 KB
最終ジャッジ日時 2024-10-13 07:58:42
合計ジャッジ時間 3,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 33 ms
19,072 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 = "Input1";

    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