結果

問題 No.429 CupShuffle
ユーザー wowilsonwowilson
提出日時 2016-10-13 04:52:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 1,885 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 107,264 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-05-01 20:15:25
合計ジャッジ時間 2,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
18,944 KB
testcase_01 AC 29 ms
19,072 KB
testcase_02 AC 29 ms
19,072 KB
testcase_03 AC 28 ms
18,688 KB
testcase_04 AC 29 ms
19,200 KB
testcase_05 AC 29 ms
18,944 KB
testcase_06 AC 30 ms
19,072 KB
testcase_07 AC 31 ms
19,200 KB
testcase_08 AC 28 ms
19,072 KB
testcase_09 AC 31 ms
19,072 KB
testcase_10 AC 47 ms
22,912 KB
testcase_11 AC 159 ms
34,816 KB
testcase_12 AC 161 ms
35,456 KB
testcase_13 AC 172 ms
34,688 KB
testcase_14 AC 165 ms
34,560 KB
testcase_15 AC 29 ms
19,072 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.Collections.Generic;
using System.Linq;

namespace Yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            var s = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
            int N = s[0];
            int K = s[1];
            int X = s[2];
            List<int> before = new List<int>();
            List<int> after = new List<int>();
            List<int[]> swapList = new List<int[]>();

            for (int i = 0; i < N; i++)
            {
                before.Add(i + 1);
            }

            for (int j = 0; j < K; j++)
            {
                if (j == X - 1)
                {
                    Console.ReadLine(); //X
                    int[] tmp = { 0, 0 };
                    swapList.Add(tmp);
                    continue;
                }

                var index = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
                swapList.Add(index);
            }

            after.AddRange(Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray());


            for (int i = 0; i < X - 1; i++)
            {
                Swap(swapList[i][0] - 1, swapList[i][1] - 1, before);
            }

            for (int i = K - 1; i >= X; i--)
            {
                Swap(swapList[i][0] - 1, swapList[i][1] - 1, after);
            }

            List<int> result = new List<int>();
            for (int i = 0; i < N; i++)
            {
                if (before[i] != after[i])
                {
                    result.Add(i + 1);
                }
            }
            Console.WriteLine(result[0] + " " + result[1]);
        }

        static void Swap(int a, int b, List<int> list)
        {
            int tmp;
            tmp = list[a];
            list[a] = list[b];
            list[b] = tmp;
        }
    }
}
0