結果

問題 No.252 "良問"(良問とは言っていない (2)
ユーザー 明智重蔵明智重蔵
提出日時 2015-08-31 15:00:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 4,311 bytes
コンパイル時間 2,688 ms
コンパイル使用メモリ 108,628 KB
実行使用メモリ 33,524 KB
最終ジャッジ日時 2023-09-25 21:06:33
合計ジャッジ時間 5,854 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
31,900 KB
testcase_01 AC 439 ms
31,368 KB
testcase_02 AC 275 ms
33,460 KB
testcase_03 AC 314 ms
31,320 KB
testcase_04 AC 313 ms
33,404 KB
testcase_05 AC 271 ms
33,524 KB
testcase_06 AC 86 ms
25,536 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 = "Input4";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("3");
            WillReturn.Add("veryverygoodproblem");
            WillReturn.Add("goodexcellentproblems");
            WillReturn.Add("problemgood");
            //0
            //0
            //10
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("2");
            WillReturn.Add("goodproblem");
            WillReturn.Add("agdddekproblemsdl");
            //0
            //2
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("9");
            WillReturn.Add("geodaaaproblem");
            WillReturn.Add("goodproblen");
            WillReturn.Add("badendlessprobrem");
            WillReturn.Add("podpdpprrobleem");
            WillReturn.Add("problemgoodprobremgood");
            WillReturn.Add("smallproblem");
            WillReturn.Add("proproprefurohobbyhobby");
            WillReturn.Add("gooeproblemd");
            WillReturn.Add("itisproblemcoolgoodproblem");
            //1
            //1
            //4
            //5
            //2
            //4
            //8
            //1
            //1
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        var sw = System.Diagnostics.Stopwatch.StartNew();

        List<string> InputList = GetInputList();
        string[] SArr = InputList.Skip(1).ToArray();

        Array.ForEach(SArr, X => DeriveCost(X));
    }

    //GoodProblemに変換する際の最小コストを求める
    static void DeriveCost(string pBeforeStr)
    {
        //problemという文字列のmの添字の配列を作成
        DeriveProblemIndMArr(pBeforeStr);

        //Goodに変換するコストのDict
        var CostGoodDict = DeriveNeedCostDict(pBeforeStr, "good");

        //Problemに変換するコストの配列
        var CostProblemDict = DeriveNeedCostDict(pBeforeStr, "problem");

        int MinCost = int.MaxValue;
        foreach (var EachPair1 in CostGoodDict) {
            foreach (var EachPair2 in CostProblemDict) {
                if (EachPair1.Value + 3 >= EachPair2.Value) continue;
                int CurrCost = EachPair1.Key + EachPair2.Key;
                if (MinCost > CurrCost)
                    MinCost = CurrCost;
            }
        }
        Console.WriteLine(MinCost);
    }

    //problemという文字列のmの添字の配列を作成
    static int[] ProblemIndMArr;
    static void DeriveProblemIndMArr(string pBeforeStr)
    {
        var wkList = new List<int>();

        int StaInd = 0;
        int wkInd = -1;
        while ((wkInd = pBeforeStr.IndexOf("problem", StaInd)) > -1) {
            StaInd = wkInd + "problem".Length;
            wkList.Add(StaInd - 1);
            if (StaInd > pBeforeStr.Length - 1) break;
        }
        ProblemIndMArr = wkList.ToArray();
    }

    //指定文字列の各Indから指定文字列に変換する際のコストのDictを返す
    static Dictionary<int, int> DeriveNeedCostDict(string pBeforeStr, string pNeedStr)
    {
        var WillReturnDict = new Dictionary<int, int>();

        for (int I = 0; I <= pBeforeStr.Length - 1; I++) {
            if (I + pNeedStr.Length > pBeforeStr.Length)
                break;
            int Cost = 0;
            for (int J = 0; J <= pNeedStr.Length - 1; J++) {
                if (pNeedStr[J] != pBeforeStr[I + J])
                    Cost++;
            }
            //goodなら最左を優先
            if (pNeedStr == "good") {
                //左にあるproblemを破壊するコストがかかる
                Cost += ProblemIndMArr.Count(X => X < I);

                if (WillReturnDict.ContainsKey(Cost))
                    continue;
                WillReturnDict.Add(Cost, I);
            }
            //Problemなら最右を優先
            if (pNeedStr == "problem") {
                WillReturnDict[Cost] = I;
            }
        }
        return WillReturnDict;
    }
}
0