AtCoderの有志コンテスト    次の有志コンテストの問題へ

パ研合宿コンペティション 2日目 C クリスマス飾り


問題へのリンク


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

    static int[] mNArr;

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

        for (int I = 1; I <= mNArr.Length; I++) {
            if (CanAchieve(I)) {
                Console.WriteLine(I);
                return;
            }
        }
    }

    // 周期をpCycleにできるかを返す
    static bool CanAchieve(int pCycle)
    {
        // 値のSet[Ind mod Hou]
        var ValSetDict = new Dictionary<int, HashSet<int>>();
        for (int I = 0; I <= pCycle - 1; I++) {
            ValSetDict[I] = new HashSet<int>();
        }

        for (int I = 0; I <= mNArr.GetUpperBound(0); I++) {
            if (mNArr[I] == 0) continue;
            int Mod = I % pCycle;
            ValSetDict[Mod].Add(mNArr[I]);
        }

        foreach (var EachPair in ValSetDict) {
            if (EachPair.Value.Count >= 2) return false;
        }
        return true;
    }
}


解説

判定メソッドを作って、ナイーブに調べてます。