AtCoderのABC    次のABCの問題へ    前のABCの問題へ

ABC116-C Grand Garden


問題へのリンク


C#のソース

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("4");
            WillReturn.Add("1 2 2 1");
            //2
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("5");
            WillReturn.Add("3 1 2 3 1");
            //5
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("8");
            WillReturn.Add("4 23 75 0 23 96 50 100");
            //221
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

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

        int[] HArr = InputList[1].Split(' ').Select(pX => int.Parse(pX)).ToArray();
        int UB = HArr.GetUpperBound(0);

        int[] CurrArr = new int[UB + 1];

        // 始点でループ
        int Answer = 0;
        for (int I = 0; I <= UB; I++) {
            while (CurrArr[I] < HArr[I]) {
                Answer++;
                // 終点でループ
                for (int J = I; J <= UB; J++) {
                    if (CurrArr[J] == HArr[J]) {
                        break;
                    }
                    CurrArr[J]++;
                }
            }
        }
        Console.WriteLine(Answer);
    }
}


解説

ナイーブにシュミレーションしてます。