AtCoderの企業コンテスト    次の企業コンテストの問題へ    前の企業コンテストの問題へ

M-SOLUTIONSプロコン2020 C Marks


問題へのリンク


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 3");
            WillReturn.Add("96 98 95 100 20");
            //Yes
            //No
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("3 2");
            WillReturn.Add("1001 869120 1001");
            //No
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("15 7");
            WillReturn.Add("3 1 4 1 5 9 2 6 5 3 5 8 9 7 9");
            //Yes
            //Yes
            //No
            //Yes
            //Yes
            //No
            //Yes
            //Yes
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

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

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

        var InsLinkedList = new LinkedList<int>();
        foreach (int EachA in AArr) {
            int BeforeCnt = InsLinkedList.Count;
            InsLinkedList.AddLast(EachA);

            if (BeforeCnt == K) {
                int FirstVal = InsLinkedList.First.Value;
                if (FirstVal < EachA) {
                    Console.WriteLine("Yes");
                }
                else {
                    Console.WriteLine("No");
                }
                InsLinkedList.RemoveFirst();
            }
        }
    }
}


解説

LinkedListクラスで末尾に追加する値と
先頭から消す値を管理しつつ、
この2つの値の大小関係をチェックしてます。