トップページに戻る    次の競技プログラミングの問題へ    前の競技プログラミングの問題へ

No.281 門松と魔法(1)

■■■問題■■■

kamipeipaa君の家の庭には1列に並んだ3本の竹があります。kamipeipaa君は
●3本の竹全ての高さが互いに異なり、真ん中の竹の高さが一番高いあるいは低い
という条件を満たすようにしたいと考えています。

kamipeipaa君は1つの竹を選び、"その竹が高さhならばmax(0,h-d)にする"という魔法を繰り返し使うことで、
この条件を満たすようにしたいと考えています。

この条件を満たすように魔法を使うとき、最低何回使う必要があるかkamipeipaa君に教えてあげてください。
なお、高さ0の竹も竹とみなされます。
竹は並び替えずに、入力の順番のままであるとする。

■■■入力■■■

d
H1
H2
H3

魔法を使ったときに変化させる高さd(0 <= d <= 10億)が1行で与えられる。
続く3行にi番目の竹の高さHi(0 <= Hi <= 10億)がそれぞれ与えられる。

■■■出力■■■

魔法を最低何回唱えることで条件を満たすことが可能か答えよ。不可能な場合は-1を出力せよ。


C#のソース

using System;
using System.Collections.Generic;

class Program
{
    static string InputPattern = "Input1";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("1");
            WillReturn.Add("3");
            WillReturn.Add("3");
            WillReturn.Add("4");
            //1
            //真ん中の竹に1度魔法を唱えることで。条件を満たすことができます
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("411");
            WillReturn.Add("4");
            WillReturn.Add("1");
            WillReturn.Add("5");
            //0
            //魔法を使う必要がないこともあります
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("2");
            WillReturn.Add("3");
            WillReturn.Add("10");
            WillReturn.Add("12");
            //2
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("1");
            WillReturn.Add("0");
            WillReturn.Add("0");
            WillReturn.Add("0");
            //-1
            //魔法を使ってもどうしようもないこともあります
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static int D;

    static void Main()
    {
        List<string> InputList = GetInputList();
        D = int.Parse(InputList[0]);
        int H1 = int.Parse(InputList[1]);
        int H2 = int.Parse(InputList[2]);
        int H3 = int.Parse(InputList[3]);
        Console.WriteLine(DeriveAnswer(H1, H2, H3));
    }

    static int DeriveAnswer(int pH1, int pH2, int pH3)
    {
        int wkInt1 = DeriveMahouCnt1(pH1, pH2, pH3);
        int wkInt2 = DeriveMahouCnt2(pH1, pH2, pH3);

        if (wkInt1 == -1 && wkInt2 == -1) return -1;
        if (wkInt1 == -1 && wkInt2 != -1) return wkInt2;
        if (wkInt1 != -1 && wkInt2 == -1) return wkInt1;
        return Math.Min(wkInt1, wkInt2);
    }

    //3本の竹全ての高さが互いに異なり、
    //真ん中の竹の高さが一番高い状態にする
    static int DeriveMahouCnt1(int pH1, int pH2, int pH3)
    {
        int MahouCnt = 0;

        if (D > 0) {
            if (pH2 <= pH1) {
                int wkCnt = (pH1 - pH2) / D + 1;
                ExecMahou(ref pH1, wkCnt);
                MahouCnt += wkCnt;
            }
            if (pH2 <= pH3) {
                int wkCnt = (pH3 - pH2) / D + 1;
                ExecMahou(ref pH3, wkCnt);
                MahouCnt += wkCnt;
            }

            if (pH1 == pH3) {
                ExecMahou(ref pH1, 1);
                MahouCnt++;
            }
        }

        if (pH1 == pH2) return -1;
        if (pH1 == pH3) return -1;
        if (pH2 == pH3) return -1;
        if (pH2 <= pH1) return -1;
        if (pH2 <= pH3) return -1;
        return MahouCnt;
    }

    //3本の竹全ての高さが互いに異なり、
    //真ん中の竹の高さが一番低い状態にする
    static int DeriveMahouCnt2(int pH1, int pH2, int pH3)
    {
        int MahouCnt = 0;

        if (D > 0) {
            if (pH1 == pH3) {
                ExecMahou(ref pH1, 1);
                MahouCnt++;
            }

            if (pH1 <= pH2) {
                int wkCnt = (pH2 - pH1) / D + 1;
                ExecMahou(ref pH2, wkCnt);
                MahouCnt += wkCnt;
            }
            if (pH3 <= pH2) {
                int wkCnt = (pH2 - pH3) / D + 1;
                ExecMahou(ref pH2, wkCnt);
                MahouCnt += wkCnt;
            }
        }

        if (pH1 == pH2) return -1;
        if (pH1 == pH3) return -1;
        if (pH2 == pH3) return -1;
        if (pH1 <= pH2) return -1;
        if (pH3 <= pH2) return -1;
        return MahouCnt;
    }

    //魔法をN回実行する
    static void ExecMahou(ref int pTarget, int pN)
    {
        pTarget = Math.Max(0, pTarget - pN * D);
    }
}


解説

3本の竹全ての高さが互いに異なり、真ん中の竹の高さが一番高い状態にする魔法の回数
と
3本の竹全ての高さが互いに異なり、真ん中の竹の高さが一番低い状態にする魔法の回数
を比較してます。