AtCoderのABC
次のABCの問題へ
前のABCの問題へ
ABC344-E Insert or Erase
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("2 1 4 3");
WillReturn.Add("4");
WillReturn.Add("2 1");
WillReturn.Add("1 4 5");
WillReturn.Add("2 2");
WillReturn.Add("1 5 1");
//4 5 1 3
}
else if (InputPattern == "Input2") {
WillReturn.Add("6");
WillReturn.Add("3 1 4 5 9 2");
WillReturn.Add("7");
WillReturn.Add("2 5");
WillReturn.Add("1 3 5");
WillReturn.Add("1 9 7");
WillReturn.Add("2 9");
WillReturn.Add("2 3");
WillReturn.Add("1 2 3");
WillReturn.Add("2 4");
//5 1 7 2 3
}
else {
string wkStr;
while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
}
return WillReturn;
}
static void Main()
{
List<string> InputList = GetInputList();
int[] AArr = InputList[1].Split(' ').Select(pX => int.Parse(pX)).ToArray();
// LinkedListNode[値]なDict
var NodeDict = new Dictionary<int, LinkedListNode<int>>();
var InsLinkedList = new LinkedList<int>();
foreach (int EachA in AArr) {
InsLinkedList.AddLast(EachA);
NodeDict[EachA] = InsLinkedList.Last;
}
int[] wkArr = { };
Action<string> SplitAct = pStr =>
wkArr = pStr.Split(' ').Select(pX => int.Parse(pX)).ToArray();
foreach (string EachStr in InputList.Skip(3)) {
SplitAct(EachStr);
int Type = wkArr[0];
if (Type == 1) {
int PrevVal = wkArr[1];
int AddVal = wkArr[2];
LinkedListNode<int> PrevNode = NodeDict[PrevVal];
InsLinkedList.AddAfter(PrevNode, AddVal);
NodeDict[AddVal] = PrevNode.Next;
}
if (Type == 2) {
int RemoveVal = wkArr[1];
InsLinkedList.Remove(NodeDict[RemoveVal]);
}
}
Console.WriteLine(IntEnumJoin(" ", InsLinkedList));
}
// セパレータとInt型の列挙を引数として、結合したstringを返す
static string IntEnumJoin(string pSeparater, IEnumerable<int> pEnum)
{
string[] StrArr = Array.ConvertAll(pEnum.ToArray(), pX => pX.ToString());
return string.Join(pSeparater, StrArr);
}
}
解説
LinkedListNode[値]なDict
でLinkedListのノードへのポイントを持ちつつ、
ナイーブにシュミレーションしてます。