結果

問題 No.429 CupShuffle
ユーザー jousenjousen
提出日時 2016-10-02 23:45:27
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 1,600 bytes
コンパイル時間 1,243 ms
コンパイル使用メモリ 114,464 KB
実行使用メモリ 40,816 KB
最終ジャッジ日時 2024-05-01 10:57:03
合計ジャッジ時間 3,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
25,132 KB
testcase_01 AC 27 ms
25,136 KB
testcase_02 AC 27 ms
23,348 KB
testcase_03 AC 28 ms
23,352 KB
testcase_04 AC 27 ms
23,220 KB
testcase_05 AC 26 ms
25,216 KB
testcase_06 AC 27 ms
27,408 KB
testcase_07 AC 27 ms
27,276 KB
testcase_08 AC 28 ms
27,524 KB
testcase_09 AC 28 ms
25,364 KB
testcase_10 AC 42 ms
28,492 KB
testcase_11 AC 142 ms
40,816 KB
testcase_12 AC 139 ms
37,372 KB
testcase_13 AC 145 ms
40,808 KB
testcase_14 AC 140 ms
40,692 KB
testcase_15 AC 27 ms
25,268 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.Collections;
using System.Linq;


namespace tes
{
	class contest
	{
		static void Main(string[] args)
		{
			 
           var input = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
            int N = input[0];
            int K = input[1];
            int X = input[2];
            var change = new Tuple<int, int>[K];
            var last = new int[N];

            for(int i =0; i < K; i++)
            {
                var tmp = Console.ReadLine().Split(' ').Select(c=>c).ToArray();
                if (tmp[0] == "?") continue;
                change[i] = new Tuple<int, int>(int.Parse(tmp[0]), int.Parse(tmp[1]));
            }
            last = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();

            var start = Enumerable.Range(1,N).ToArray();

            for(int i =0; i<X-1; i++)
            {
                int l = change[i].Item1-1;
                int r = change[i].Item2-1;

                int tmp = start[l];
                start[l] = start[r];
                start[r] = tmp;
            }


            for(int i =0; i<K- X; i++)
            {
                int l = change[K-i-1].Item1 - 1;
                int r = change[K-i-1].Item2 - 1;

                int tmp = last[l];
                last[l] = last[r];
                last[r] = tmp;
            }

            var ans = new List<int>();

            for(int i =0; i< N; i++)
            {
                if (start[i] != last[i]) ans.Add(i+1);
            }

            Console.WriteLine(string.Join(" ", ans));
		}				 
	}
}
0