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

ABC161-E Yutori


問題へのリンク


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 3 2");
            WillReturn.Add("ooxxxoxxxoo");
            //6
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("5 2 3");
            WillReturn.Add("ooxoo");
            //1
            //5
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("5 1 0");
            WillReturn.Add("ooooo");
            //
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("16 4 3");
            WillReturn.Add("ooxxoxoxxxoxoxxo");
            //11
            //16
        }
        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 C = wkArr[2];

        string S = InputList[1];
        int UB = S.Length - 1;

        var WorkIDListDict = new Dictionary<int, List<int>>();
        for (int I = 0; I <= UB; I++) {
            WorkIDListDict[I] = new List<int>();
        }

        // 左から貪欲に働く日を決める
        int CanWorkMinDay = 0;
        int WorkIDSei = 1;
        for (int I = 0; I <= S.Length - 1; I++) {
            if (S[I] == 'x') continue;
            if (I < CanWorkMinDay) continue;

            WorkIDListDict[I].Add(WorkIDSei);
            WorkIDSei++;
            CanWorkMinDay = I + C + 1;
        }

        // 右から貪欲に働く日を決める
        int CanWorkMaxDay = int.MaxValue;
        int WorkIDRev = K;
        for (int I = S.Length - 1; 0 <= I; I--) {
            if (S[I] == 'x') continue;
            if (CanWorkMaxDay < I) continue;

            WorkIDListDict[I].Add(WorkIDRev);
            WorkIDRev--;
            CanWorkMaxDay = I - C - 1;
        }

        foreach (var EachPair in WorkIDListDict.OrderBy(pX => pX.Key)) {
            List<int> CurrList = EachPair.Value;
            if (CurrList.Count == 2 && CurrList.Distinct().Count() == 1) {
                Console.WriteLine(EachPair.Key + 1);
            }
        }
    }
}


解説

働ける日を○
働けない日を×
働いた日は、次の日から3日休みとして、

○○××○×○×××○×○××○
というデータで考え、
右から貪欲に働く日を決めた場合と
左から貪欲に働く日を決めた場合を考えると

○○××○×○×××○×○××○
1   2     3    4
 1    2   3    4

で、両方で数字が被る日が、必ず働く日となります。