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

ARC036-B 山のデータ


問題へのリンク


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("6");
            WillReturn.Add("4");
            WillReturn.Add("5");
            WillReturn.Add("1");
            WillReturn.Add("6");
            WillReturn.Add("9");
            WillReturn.Add("7");
            //4
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("7");
            WillReturn.Add("90");
            WillReturn.Add("70");
            WillReturn.Add("50");
            WillReturn.Add("30");
            WillReturn.Add("20");
            WillReturn.Add("10");
            WillReturn.Add("5");
            //7
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int[] HArr = InputList.Skip(1).Select(pX => int.Parse(pX)).ToArray();
        int UB = HArr.GetUpperBound(0);

        int[] RunSun1 = new int[UB + 1];
        int[] RunSun2 = new int[UB + 1];

        int SeqCnt1 = 0;
        for (int I = 1; I <= UB; I++) {
            if (HArr[I - 1] < HArr[I]) {
                SeqCnt1++;
            }
            else {
                SeqCnt1 = 0;
            }
            RunSun1[I] = SeqCnt1;
        }

        int SeqCnt2 = 0;
        for (int I = UB - 1; 0 <= I; I--) {
            if (HArr[I + 1] < HArr[I]) {
                SeqCnt2++;
            }
            else {
                SeqCnt2 = 0;
            }
            RunSun2[I] = SeqCnt2;
        }

        var AnswerKouho = new List<int>();
        for (int I = 0; I <= UB; I++) {
            AnswerKouho.Add(RunSun1[I] + RunSun2[I] + 1);
        }
        Console.WriteLine(AnswerKouho.Max());
    }
}


解説

最初に、
配列を前後に走査して、
狭義単調増加区間の長さと
狭義単調減少区間の長さを
求めます。

それから開始添字ごとの
解候補を求めることができます。