結果

問題 No.555 世界史のレポート
ユーザー 明智重蔵明智重蔵
提出日時 2017-08-19 06:42:03
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 4,847 bytes
コンパイル時間 995 ms
コンパイル使用メモリ 109,312 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-04-22 16:16:32
合計ジャッジ時間 2,475 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
19,200 KB
testcase_01 AC 28 ms
19,328 KB
testcase_02 AC 28 ms
19,328 KB
testcase_03 AC 32 ms
19,456 KB
testcase_04 AC 30 ms
19,584 KB
testcase_05 AC 29 ms
19,328 KB
testcase_06 AC 31 ms
19,328 KB
testcase_07 AC 28 ms
19,456 KB
testcase_08 AC 27 ms
19,328 KB
testcase_09 AC 27 ms
19,456 KB
testcase_10 AC 29 ms
19,712 KB
testcase_11 AC 30 ms
19,712 KB
testcase_12 AC 29 ms
19,840 KB
testcase_13 AC 31 ms
20,608 KB
testcase_14 AC 45 ms
25,216 KB
testcase_15 AC 31 ms
19,712 KB
testcase_16 AC 30 ms
19,528 KB
testcase_17 AC 30 ms
19,712 KB
testcase_18 AC 29 ms
19,712 KB
testcase_19 AC 29 ms
19,712 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("6");
            WillReturn.Add("3 2");
            //12
            //操作          レポートの文字列    クリップボードの文字列
            //始めの状態    A                   空
            //コピー        A                   A
            //ペースト      AA                  A
            //コピー        AA                  AA
            //ペースト      AAAA                AA
            //ペースト      AAAAAA              AA
            //コピーを2回、ペーストを3回行ったので合計のコストは12です。
            //また、コピー、ペースト、ペースト、コピー、ペーストでも
            //12のコストで6文字作ることができます。 
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("10");
            WillReturn.Add("1 3");
            //15
            //コピー、ペースト、コピー、ペースト、コピー、ペースト、ペーストで
            //12文字をコスト15で作れます。
            //他にもコスト15で10文字以上作る方法があります。
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("100");
            WillReturn.Add("1000 1");
            //1099
            //コピーの後ペーストを99回行います
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();

        int[] wkArr = { };
        Action<string> SplitAct = pStr =>
            wkArr = pStr.Split(' ').Select(X => int.Parse(X)).ToArray();

        SplitAct(InputList[0]);
        int N = wkArr[0];

        SplitAct(InputList[1]);
        int C = wkArr[0];
        int V = wkArr[1];

        //最小コスト[状態のハッシュ値]なDP表
        var PrevDP = new Dictionary<long, int>();
        PrevDP.Add(100000, 0);

        int Answer = int.MaxValue;

        while (true) {
            bool WillBreak = true;
            var CurrDP = new Dictionary<long, int>();

            foreach (var EachPair in PrevDP) {
                JyoutaiDef CurrJyoutai = DeriveJyoutai(EachPair.Key);

                //下限値枝切り
                if (EachPair.Value >= Answer) continue;

                if (CurrJyoutai.ReportLen >= N) {
                    Answer = EachPair.Value;
                    continue;
                }
                WillBreak = false;

                JyoutaiDef NewJyoutai;
                long NewKey;
                int NewValue;

                //コピーする場合
                if (CurrJyoutai.ClipLen < CurrJyoutai.ReportLen) {
                    NewJyoutai.ReportLen = CurrJyoutai.ReportLen;
                    NewJyoutai.ClipLen = CurrJyoutai.ReportLen;
                    NewKey = DeriveHash(NewJyoutai);
                    NewValue = EachPair.Value + C;
                    if (CurrDP.ContainsKey(NewKey) == false ||
                        CurrDP[NewKey] > NewValue) {
                        CurrDP[NewKey] = NewValue;
                    }
                }

                //ペーストする場合
                if (CurrJyoutai.ClipLen > 0) {
                    NewJyoutai.ReportLen = CurrJyoutai.ReportLen + CurrJyoutai.ClipLen;
                    if (NewJyoutai.ReportLen > N) NewJyoutai.ReportLen = N;
                    NewJyoutai.ClipLen = CurrJyoutai.ClipLen;
                    NewKey = DeriveHash(NewJyoutai);
                    NewValue = EachPair.Value + V;
                    if (CurrDP.ContainsKey(NewKey) == false ||
                        CurrDP[NewKey] > NewValue) {
                        CurrDP[NewKey] = NewValue;
                    }
                }
            }
            PrevDP = CurrDP;
            if (WillBreak) break;
        }
        Console.WriteLine(Answer);
    }

    struct JyoutaiDef
    {
        internal int ReportLen;
        internal int ClipLen;
    }

    //上位5桁がClipLenで、下位5桁がReportLen
    static long DeriveHash(JyoutaiDef pJyoutai)
    {
        long WillReturn = 0;
        WillReturn += pJyoutai.ClipLen;
        WillReturn += (long)pJyoutai.ReportLen * 100000;
        return WillReturn;
    }

    static JyoutaiDef DeriveJyoutai(long pHash)
    {
        JyoutaiDef WillReturn;
        WillReturn.ClipLen = (int)(pHash % 100000);
        WillReturn.ReportLen = (int)(pHash / 100000);
        return WillReturn;
    }
}
0