結果

問題 No.429 CupShuffle
ユーザー 14番14番
提出日時 2016-11-08 11:04:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 2,326 bytes
コンパイル時間 938 ms
コンパイル使用メモリ 115,916 KB
実行使用メモリ 40,628 KB
最終ジャッジ日時 2024-11-25 04:38:25
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
27,492 KB
testcase_01 AC 29 ms
25,240 KB
testcase_02 AC 31 ms
27,152 KB
testcase_03 AC 29 ms
27,276 KB
testcase_04 AC 30 ms
25,308 KB
testcase_05 AC 29 ms
23,348 KB
testcase_06 AC 29 ms
23,352 KB
testcase_07 AC 28 ms
25,368 KB
testcase_08 AC 28 ms
25,264 KB
testcase_09 AC 30 ms
25,260 KB
testcase_10 AC 46 ms
28,432 KB
testcase_11 AC 147 ms
40,628 KB
testcase_12 AC 142 ms
40,248 KB
testcase_13 AC 143 ms
37,320 KB
testcase_14 AC 137 ms
31,932 KB
testcase_15 AC 28 ms
25,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;

public class Program
{
    public void Proc() {
        Reader.IsDebug = false;
        int[] inpt = Reader.ReadLine().Trim().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().Trim() .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());
        }

        string[] inptstr = Reader.ReadLine().Trim().Split(' ');
        int[] tyokugo = new int[inptstr.Length];

        for(int i=0;i<inptstr.Length; i++) {
            tyokugo[i] = int.Parse(inptstr[i]);
        }

        for(int i=swList.Count-1; i>=0;i--) {
            Swap(tyokugo, swList[i][0], swList[i][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 = @"






";
        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();
    }
}
0