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

ARC110-B Many 110


問題へのリンク


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("4");
            WillReturn.Add("1011");
            //9999999999
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("22");
            WillReturn.Add("1011011011011011011011");
            //9999999993
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        string T = InputList[1];

        string CheckStr = "110";

        const long CycleCnt = 10000000000;
        const long BanmeUB = CycleCnt - 1;

        // 始点でループ
        long Answer = 0;
        for (int I = 0; I <= CheckStr.Length - 1; I++) {
            bool IsMatch = true;
            for (int J = 0; J <= T.Length - 1; J++) {
                int CheckInd = (I + J) % 3;
                if (CheckStr[CheckInd] != T[J]) {
                    IsMatch = false;
                    break;
                }
            }
            if (IsMatch == false) continue;

            // 0番目の110から、何番目の110までマッチするか
            long BanmeTo = (I + T.Length - 1) / 3;

            Answer += BanmeUB - BanmeTo + 1;
        }
        Console.WriteLine(Answer);
    }
}


解説

110の繰り返しにマッチするかを
3通りの開始位置で調べてます。

マッチする場合は、110の繰り返しの
0番目から9999999999番目まである中で
何通りでマッチするかを、解に計上してます。