結果

問題 No.429 CupShuffle
ユーザー 14番14番
提出日時 2016-11-08 09:52:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 2,224 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 106,096 KB
実行使用メモリ 36,288 KB
最終ジャッジ日時 2023-08-16 14:48:51
合計ジャッジ時間 4,875 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
19,728 KB
testcase_01 AC 64 ms
21,768 KB
testcase_02 AC 64 ms
21,940 KB
testcase_03 AC 63 ms
21,828 KB
testcase_04 AC 65 ms
21,760 KB
testcase_05 AC 66 ms
21,796 KB
testcase_06 AC 67 ms
23,840 KB
testcase_07 AC 66 ms
23,800 KB
testcase_08 AC 64 ms
23,848 KB
testcase_09 AC 66 ms
23,944 KB
testcase_10 AC 83 ms
24,564 KB
testcase_11 AC 187 ms
34,948 KB
testcase_12 AC 186 ms
36,288 KB
testcase_13 AC 194 ms
35,852 KB
testcase_14 AC 181 ms
32,476 KB
testcase_15 AC 62 ms
21,732 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