結果

問題 No.107 モンスター
ユーザー 14番14番
提出日時 2016-04-14 20:33:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,112 ms / 5,000 ms
コード長 2,805 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 111,904 KB
実行使用メモリ 67,752 KB
最終ジャッジ日時 2024-06-01 04:36:41
合計ジャッジ時間 12,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
18,304 KB
testcase_01 AC 29 ms
18,176 KB
testcase_02 AC 30 ms
18,176 KB
testcase_03 AC 29 ms
18,304 KB
testcase_04 AC 28 ms
18,304 KB
testcase_05 AC 29 ms
18,176 KB
testcase_06 AC 28 ms
18,176 KB
testcase_07 AC 28 ms
18,048 KB
testcase_08 AC 29 ms
18,048 KB
testcase_09 AC 29 ms
18,048 KB
testcase_10 AC 29 ms
18,176 KB
testcase_11 AC 29 ms
18,304 KB
testcase_12 AC 29 ms
18,304 KB
testcase_13 AC 103 ms
24,576 KB
testcase_14 AC 346 ms
31,616 KB
testcase_15 AC 346 ms
31,616 KB
testcase_16 AC 30 ms
18,432 KB
testcase_17 AC 105 ms
24,704 KB
testcase_18 AC 46 ms
21,128 KB
testcase_19 AC 48 ms
21,776 KB
testcase_20 AC 1,910 ms
49,656 KB
testcase_21 AC 924 ms
48,220 KB
testcase_22 AC 2,112 ms
67,752 KB
testcase_23 AC 1,646 ms
55,416 KB
testcase_24 AC 1,095 ms
54,192 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.Text;
using System.Linq;

class Program
{
    public void Proc()
    {
        Reader.IsDebug = false;
        int monsterCount = int.Parse(Reader.ReadLine());

        this.MonsterList = Reader.GetInt();


        int ans = this.GetAns(100, 100, Convert.ToInt32("1".PadLeft(monsterCount, '1'), 2));
        Console.WriteLine(ans);

    }

    private int[] MonsterList;

    Dictionary<int, Dictionary<int, int>> dic = new Dictionary<int, Dictionary<int, int>>();

    private int GetAns(int hp, int maxHp, int target)
    {
        if (!dic.ContainsKey(hp))
        {
            dic.Add(hp, new Dictionary<int,int>());
        }
        if (dic[hp].ContainsKey(target))
        {
            return dic[hp][target];
        }

        int ans = 0;

        if (target == 0)
        {
            ans = hp;
        } else if(hp <= 0) {
            ans = 0;
        }
        else
        {
            for (int i = 0; i < MonsterList.Length; i++)
            {
                int key = Convert.ToInt32("1".PadRight(i + 1, '0'), 2);
                if ((target & key) == key)
                {
                    int nextHP = Math.Min(maxHp, hp + this.MonsterList[i]);
                    int nextMaxHp = maxHp;
                    if (this.MonsterList[i] < 0)
                    {
                        nextMaxHp += 100;
                    }
                    int ret = this.GetAns(nextHP, nextMaxHp, target - key);
                    ans = Math.Max(ans, ret);
                }
            }
        }

        this.dic[hp].Add(target, ans);
        return ans;

    }



    public class Reader
    {
        public static bool IsDebug = true;
        private static String PlainInput = @"



4
-40 -60 210 -110



 
";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        public static int[] GetInt(char delimiter = ' ', bool trim = false)
        {
            string inptStr = ReadLine();
            if (trim)
            {
                inptStr = inptStr.Trim();
            }
            string[] inpt = inptStr.Split(delimiter);
            int[] ret = new int[inpt.Length];
            for (int i = 0; i < inpt.Length; i++)
            {
                ret[i] = int.Parse(inpt[i]);
            }
            return ret;
        }
    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0