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

ABC254-C K Swap


問題へのリンク


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 2");
            WillReturn.Add("3 4 1 3 4");
            //Yes
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("5 3");
            WillReturn.Add("3 4 1 3 4");
            //No
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("7 5");
            WillReturn.Add("1 2 3 4 5 5 10");
            //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();
        int UB = AArr.GetUpperBound(0);

        int[] GoalArr = AArr.OrderBy(pX => pX).ToArray();

        for (int I = 0; I <= K - 1; I++) {
            var List1 = new List<int>();
            var List2 = new List<int>();
            for (int J = I; J <= UB; J += K) {
                List1.Add(AArr[J]);
                List2.Add(GoalArr[J]);
            }
            List1.Sort();
            if (List1.SequenceEqual(List2) == false) {
                Console.WriteLine("No");
                return;
            }
        }
        Console.WriteLine("Yes");
    }
}


解説

ソート済配列をゴール配列とします。

K飛びの要素で配列の値と、ゴール配列の要素を、
ListにAddしてから、
ソートしてゴール配列にできるかを判定してます。