結果

問題 No.429 CupShuffle
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-11 00:07:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,136 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 80,484 KB
実行使用メモリ 73,908 KB
最終ジャッジ日時 2024-06-30 13:24:48
合計ジャッジ時間 11,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
56,924 KB
testcase_01 AC 158 ms
54,848 KB
testcase_02 AC 162 ms
55,116 KB
testcase_03 AC 162 ms
54,824 KB
testcase_04 AC 226 ms
58,644 KB
testcase_05 AC 163 ms
54,868 KB
testcase_06 AC 234 ms
58,032 KB
testcase_07 AC 234 ms
58,216 KB
testcase_08 AC 162 ms
54,844 KB
testcase_09 AC 234 ms
57,896 KB
testcase_10 AC 438 ms
59,220 KB
testcase_11 AC 1,023 ms
69,384 KB
testcase_12 AC 979 ms
71,996 KB
testcase_13 AC 1,082 ms
68,660 KB
testcase_14 AC 1,136 ms
73,908 KB
testcase_15 AC 164 ms
54,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No429{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int K = sc.nextInt();
		int X = sc.nextInt();
		int[] start = new int[N];
		for(int i = 0; i < N; i++){
			start[i] = i+1;
		}
		
		int[][] AB = new int[K][2];
		for(int i = 0; i < K; i++){
			if(i == X-1){
				String a = sc.next();
				String b = sc.next();
				AB[i][0] = 0;
				AB[i][1] = 0;
				continue;
			}
			AB[i][0] = sc.nextInt();
			AB[i][1] = sc.nextInt();
		}
		
		int[] C = new int[N];
		for(int i = 0; i < N; i++){
			C[i] = sc.nextInt();
		}

		for(int i = 0; i < X-1; i++){
			start = perm(start, AB[i][0]-1, AB[i][1]-1);
		}
		for(int i = K-1; i > X-1; i--){
			C = perm(C, AB[i][0]-1, AB[i][1]-1);
		}

		List<Integer> answer = new ArrayList<Integer>();
		for(int i = 0; i < N; i++){
			if(start[i] != C[i]) answer.add(i+1);
		}

		System.out.println(answer.get(0)+" "+answer.get(1));
		
	}
	private static int[] perm(int[] list, int idx1, int idx2){
		int num1 = list[idx1];
		int num2 = list[idx2];
		list[idx1] = num2;
		list[idx2] = num1;
		return list;
	}
}
0