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

ABC258-C Rotation


問題へのリンク


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("3 3");
            WillReturn.Add("abc");
            WillReturn.Add("2 2");
            WillReturn.Add("1 1");
            WillReturn.Add("2 2");
            //b
            //a
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("10 8");
            WillReturn.Add("dsuccxulnl");
            WillReturn.Add("2 4");
            WillReturn.Add("2 7");
            WillReturn.Add("1 2");
            WillReturn.Add("2 7");
            WillReturn.Add("1 1");
            WillReturn.Add("1 2");
            WillReturn.Add("1 3");
            WillReturn.Add("2 5");
            //c
            //u
            //c
            //u
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

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

        int[] wkArr = { };
        Action<string> SplitAct = pStr =>
            wkArr = pStr.Split(' ').Select(pX => int.Parse(pX)).ToArray();

        int StaInd = 0;
        int UB = S.Length - 1;
        int Hou = UB + 1;
        foreach (string EachStr in InputList.Skip(2)) {
            SplitAct(EachStr);

            int T = wkArr[0];
            int X = wkArr[1];

            if (T == 1) {
                StaInd -= X;
                StaInd %= Hou;
                if (StaInd < 0) StaInd += Hou;
            }

            if (T == 2) {
                int Target = StaInd + X - 1;
                Target %= Hou;
                if (Target < 0) Target += Hou;
                Console.WriteLine(S[Target]);
            }
        }
    }
}


解説

考察すると、文字参照の開始位置を覚えておいて
modで考えれば良いと分かります。