AtCoderのABC
次のABCの問題へ
前のABCの問題へ
ABC167-D Teleporter
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 5");
WillReturn.Add("3 2 4 1");
//4
}
else if (InputPattern == "Input2") {
WillReturn.Add("6 727202214173249351");
WillReturn.Add("6 5 2 5 3 2");
//2
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
static void Main()
{
List<string> InputList = GetInputList();
long[] wkArr = InputList[0].Split(' ').Select(pX => long.Parse(pX)).ToArray();
long K = wkArr[1];
long[] AArr = InputList[1].Split(' ').Select(pX => long.Parse(pX)).ToArray();
long UB = AArr.GetUpperBound(0);
// 0オリジンに変更
for (long I = 0; I <= UB; I++) {
AArr[I]--;
}
// 訪問のサイクルを求める
var CycleList = new List<long>();
var CycleSet = new HashSet<long>();
long CurrPos = AArr[0];
var PreCycleList = new List<long>();
while (true) {
if (CycleSet.Contains(CurrPos)) {
PreCycleList = CycleList.TakeWhile(pX => pX != CurrPos).ToList();
CycleList = CycleList.SkipWhile(pX => pX != CurrPos).ToList();
break;
}
CycleList.Add(CurrPos);
CycleSet.Add(CurrPos);
CurrPos = AArr[CurrPos];
}
long Answer;
if (K <= PreCycleList.Count) {
Answer = PreCycleList[(int)(K - 1)];
}
else {
// 周期に入る前の分を引く
K -= PreCycleList.Count;
// 周期でmodを取って、0だったらmodを足す
K %= CycleList.Count;
if (K == 0) K = CycleList.Count;
Answer = CycleList[(int)(K - 1)];
}
// 1オリジンに変更
Answer++;
Console.WriteLine(Answer);
}
}
解説
サイクルを発見したら
TakeWhileメソッドとSkipWhileメソッドで
サイクル前のListと
サイクルのListに分けてます。