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

ABC148-D Brick Break


問題へのリンク


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("3");
            WillReturn.Add("2 1 2");
            //1
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("3");
            WillReturn.Add("2 2 2");
            //-1
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("10");
            WillReturn.Add("3 1 4 1 5 9 2 6 5 3");
            //7
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("1");
            WillReturn.Add("1");
            //0
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

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

        long[] AArr = InputList[1].Split(' ').Select(pX => long.Parse(pX)).ToArray();

        long Answer = 0;
        long CurrNum = 1;
        foreach (long EachInt in AArr) {
            if (CurrNum == EachInt) {
                CurrNum++;
            }
            else {
                Answer++;
            }
        }

        if (CurrNum == 1) {
            Console.WriteLine(-1);
        }
        else {
            Console.WriteLine(Answer);
        }
    }
}


解説

左から順に配列を見ていき、残せるレンガを貪欲に残す方法で、解が分かります。