結果

問題 No.429 CupShuffle
ユーザー 14番14番
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
25,120 KB
testcase_01 AC 31 ms
25,256 KB
testcase_02 AC 32 ms
27,240 KB
testcase_03 AC 31 ms
25,264 KB
testcase_04 AC 32 ms
25,252 KB
testcase_05 AC 30 ms
25,192 KB
testcase_06 AC 33 ms
27,264 KB
testcase_07 AC 31 ms
27,400 KB
testcase_08 AC 31 ms
24,996 KB
testcase_09 AC 31 ms
27,036 KB
testcase_10 AC 45 ms
28,552 KB
testcase_11 AC 159 ms
40,380 KB
testcase_12 AC 158 ms
38,192 KB
testcase_13 AC 159 ms
41,400 KB
testcase_14 AC 154 ms
34,104 KB
testcase_15 AC 29 ms
25,140 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().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();
    }
}
0