using System; using System.Linq; using System.Collections.Generic; public class Program { public void Proc() { Reader.IsDebug = false; int[] inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray(); int cupCount = inpt[0]; int swapCount = inpt[1]; int target = inpt[2] - 1; int[] tyokuzen = new int[cupCount]; for(int i=0; iint.Parse(a)-1).ToArray(); this.Swap(tyokuzen, inpt[0], inpt[1]); } Reader.ReadLine(); List swList = new List(); for(int i=target+1; iint.Parse(a)-1).ToArray()); } swList.Reverse(); int[] tyokugo = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)).ToArray(); foreach(int[] sw in swList) { Swap(tyokugo, sw[0], sw[1]); } List ans = new List(); for(int i=0; i= 2) { break; } } } Console.WriteLine(string.Join(" ", ans)); } private void Swap(int[] arr, int idx1, int idx2) { int num = arr[idx1]; arr[idx1] = arr[idx2]; arr[idx2] = num; } public class Reader { public static bool IsDebug = true; private static System.IO.StringReader SReader; private static string InitText = @" 3 6 4 1 3 1 2 2 3 ? ? 2 3 1 3 1 2 3 "; public static string ReadLine() { if(IsDebug) { if(SReader == null) { SReader = new System.IO.StringReader(InitText.Trim()); } return SReader.ReadLine(); } else { return Console.ReadLine(); } } } public static void Main(string[] args) { Program prg = new Program(); prg.Proc(); } }