AtCoderのPAST    次のPASTの問題へ    前のPASTの問題へ

第1回PAST D 重複検査


問題へのリンク


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("1");
            WillReturn.Add("5");
            WillReturn.Add("6");
            WillReturn.Add("3");
            WillReturn.Add("2");
            WillReturn.Add("6");
            //6 4
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("7");
            WillReturn.Add("5");
            WillReturn.Add("4");
            WillReturn.Add("3");
            WillReturn.Add("2");
            WillReturn.Add("7");
            WillReturn.Add("6");
            WillReturn.Add("1");
            //Correct
        }
        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(X => int.Parse(X)).ToArray();
        int N = wkArr[0];
        int[] AArr = InputList.Skip(1).Select(X => int.Parse(X)).ToArray();

        int[] CntArr = new int[N + 1];

        for (int I = 0; I <= AArr.GetUpperBound(0); I++) {
            CntArr[AArr[I]]++;
        }

        bool HasZero = false; int ZeroValue = 0;
        bool HasTwo = false; int TwoValue = 0;

        for (int I = 1; I <= CntArr.GetUpperBound(0); I++) {
            if (CntArr[I] == 0) {
                HasZero = true;
                ZeroValue = I;
            }
            if (CntArr[I] == 2) {
                HasTwo = true;
                TwoValue = I;
            }
        }
        if (HasZero && HasTwo) {
            Console.WriteLine("{0} {1}", TwoValue, ZeroValue);
        }
        else {
            Console.WriteLine("Correct");
        }
    }
}


解説

整数ごとの出現数を配列で管理してます。