AtCoderのARC    次のARCの問題へ    前のARCの問題へ

ARC133-A Erase by Value


問題へのリンク


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

    static void Main()
    {
        List<string> InputList = GetInputList();
        int[] AArr = InputList[1].Split(' ').Select(pX => int.Parse(pX)).ToArray();

        // 数値がユニークな場合
        if (AArr.Distinct().Count() == 1) {
            Console.WriteLine();
            return;
        }

        // 転倒の有無を調べる
        for (int I = 0; I <= AArr.GetUpperBound(0) - 1; I++) {
            // 転倒がある場合は、最初の転倒に対応
            if (AArr[I] > AArr[I + 1]) {
                int[] AnswerArr1 = Array.FindAll(AArr, pX => pX != AArr[I]);
                Console.WriteLine(IntEnumJoin(" ", AnswerArr1));
                return;
            }
        }

        // 転倒が無い場合は、最終数値を削除
        int LastVal = AArr.Last();
        int[] AnswerArr2 = Array.FindAll(AArr, pX => pX != LastVal);
        Console.WriteLine(IntEnumJoin(" ", AnswerArr2));
    }

    // セパレータとInt型の列挙を引数として、結合したstringを返す
    static string IntEnumJoin(string pSeparater, IEnumerable<int> pEnum)
    {
        string[] StrArr = Array.ConvertAll(pEnum.ToArray(), pX => pX.ToString());
        return string.Join(pSeparater, StrArr);
    }
}


解説

最初に、数値がユニークかで場合分けしてます。

次に、転倒の有無で場合分けしてます。
転倒があれば最初の転倒に対応するのが最適で
転倒がなければ、最後の数値を削除するのが最適です。