結果
問題 |
No.429 CupShuffle
|
ユーザー |
![]() |
提出日時 | 2016-11-08 09:52:14 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 159 ms / 2,000 ms |
コード長 | 2,224 bytes |
コンパイル時間 | 1,073 ms |
コンパイル使用メモリ | 115,972 KB |
実行使用メモリ | 41,400 KB |
最終ジャッジ日時 | 2024-11-25 04:35:54 |
合計ジャッジ時間 | 2,925 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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; i<cupCount; i++) { tyokuzen[i] = i+1; } for(int i=0; i<target; i++) { inpt = Reader.ReadLine().Split(' ').Select(a=>int.Parse(a)-1).ToArray(); this.Swap(tyokuzen, inpt[0], inpt[1]); } Reader.ReadLine(); List<int[]> swList = new List<int[]>(); for(int i=target+1; i<swapCount; i++) { swList.Add(Reader.ReadLine().Split(' ').Select(a=>int.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<int> ans = new List<int>(); for(int i=0; i<tyokuzen.Length; i++) { if(tyokuzen[i] != tyokugo[i]) { ans.Add(i+1); if(ans.Count >= 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(); } }