結果

問題 No.286 Modulo Discount Store
ユーザー 14番14番
提出日時 2016-05-15 00:28:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 1,903 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 105,728 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-10-06 02:54:00
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,048 KB
testcase_01 AC 27 ms
18,432 KB
testcase_02 AC 100 ms
22,528 KB
testcase_03 AC 27 ms
18,048 KB
testcase_04 AC 27 ms
18,176 KB
testcase_05 AC 25 ms
17,920 KB
testcase_06 AC 201 ms
23,936 KB
testcase_07 AC 24 ms
17,792 KB
testcase_08 AC 25 ms
18,048 KB
testcase_09 AC 26 ms
17,792 KB
testcase_10 AC 59 ms
22,244 KB
testcase_11 AC 25 ms
17,792 KB
testcase_12 AC 25 ms
18,048 KB
testcase_13 AC 104 ms
22,400 KB
testcase_14 AC 27 ms
17,920 KB
testcase_15 AC 26 ms
17,792 KB
testcase_16 AC 27 ms
18,432 KB
testcase_17 AC 398 ms
26,624 KB
testcase_18 AC 57 ms
22,256 KB
testcase_19 AC 24 ms
17,792 KB
testcase_20 AC 31 ms
19,836 KB
testcase_21 AC 24 ms
17,792 KB
testcase_22 AC 25 ms
17,920 KB
testcase_23 AC 95 ms
22,272 KB
testcase_24 AC 25 ms
18,048 KB
testcase_25 AC 39 ms
22,128 KB
testcase_26 AC 25 ms
17,920 KB
testcase_27 AC 42 ms
21,980 KB
testcase_28 AC 202 ms
23,680 KB
testcase_29 AC 27 ms
17,664 KB
testcase_30 AC 26 ms
17,920 KB
testcase_31 AC 30 ms
18,688 KB
testcase_32 AC 29 ms
18,560 KB
testcase_33 AC 27 ms
17,792 KB
testcase_34 AC 26 ms
18,048 KB
testcase_35 AC 27 ms
18,304 KB
testcase_36 AC 25 ms
17,408 KB
testcase_37 AC 40 ms
21,992 KB
testcase_38 AC 25 ms
17,664 KB
testcase_39 AC 195 ms
24,064 KB
testcase_40 AC 26 ms
17,920 KB
testcase_41 AC 26 ms
17,920 KB
testcase_42 AC 27 ms
17,920 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 itemCount = int.Parse(Reader.ReadLine());
        for (int i = 0; i < itemCount; i++)
        {
            this.priceList.Add(int.Parse(Reader.ReadLine()));

        }

        int ans = this.GetAns(this.priceList, 0);
        Console.WriteLine(ans);
    }

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

    private int GetAns(List<int> target, int nebiki)
    {
        string key = string.Join("#", target);
        if (dic.ContainsKey(key))
        {
            return dic[key];
        }

        if (target.Count == 1)
        {
            return Math.Max(0, target[0] - nebiki);
        }
        int ans = int.MaxValue ;
        for (int i = 0; i < target.Count; i++)
        {
            List<int> subList = new List<int>(target);
            subList.RemoveAt(i);
            ans = Math.Min(ans, this.GetAns(subList, (nebiki + target[i]) % 1000) + (Math.Max(0, target[i] - nebiki)));
        }
        dic.Add(key, ans);
        return ans;
    }

    public List<int> priceList = new List<int>();


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

5
10000
1000
100
10
1


 
";
        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();
            }
        }

    }
    static void Main()
    {
        Program prg = new Program();
        prg.Proc();
    }
}
0