結果

問題 No.429 CupShuffle
ユーザー hermione17hermione17
提出日時 2016-10-02 23:56:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 843 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 3,673 ms
コンパイル使用メモリ 79,460 KB
実行使用メモリ 68,676 KB
最終ジャッジ日時 2024-05-01 10:59:26
合計ジャッジ時間 10,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
56,888 KB
testcase_01 AC 152 ms
55,004 KB
testcase_02 AC 154 ms
54,992 KB
testcase_03 AC 151 ms
55,040 KB
testcase_04 AC 200 ms
56,664 KB
testcase_05 AC 151 ms
54,748 KB
testcase_06 AC 204 ms
56,664 KB
testcase_07 AC 205 ms
55,764 KB
testcase_08 AC 163 ms
54,744 KB
testcase_09 AC 202 ms
56,476 KB
testcase_10 AC 314 ms
59,276 KB
testcase_11 AC 765 ms
68,676 KB
testcase_12 AC 717 ms
64,580 KB
testcase_13 AC 843 ms
67,896 KB
testcase_14 AC 789 ms
68,212 KB
testcase_15 AC 156 ms
55,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y429 {
	Scanner in;
	PrintStream out;
	
	int nextInt() {
		String s = in.next();
		if (s.charAt(0) == '?') return -1;
		else return Integer.valueOf(s);
	}
	
	Y429() throws Exception {
		in = new Scanner(System.in);
		out = new PrintStream(System.out);
		
		int n = in.nextInt(),
				k = in.nextInt(),
				x = in.nextInt();
		
		int[] a = new int[k],
				b = new int[k],
				c = new int[n],
				d = new int[n];
		
		for (int i = 0; i < k; i++) {
			a[i] = nextInt();
			b[i] = nextInt();
		}
		
		for (int i = 0; i < n; i++) {
			d[i] = i + 1;
			c[i] = nextInt();
		}

		for (int i = 0; i < x - 1; i++) {
			int tmp = d[a[i] - 1];
			d[a[i] - 1] = d[b[i] - 1];
			d[b[i] - 1] = tmp;
		}
		
		for (int i = k-1; i>x - 1; i--) {
			int tmp = c[a[i] - 1];
			c[a[i] - 1] = c[b[i] - 1];
			c[b[i] - 1] = tmp;
		}

		int[] ans = new int[2];
		int cnt = 0;
		
		for (int i = 0; i < n; i++) {
			if (c[i] != d[i]) {
				ans[cnt++] = i + 1;
			}
		}
		
		if (ans[0] < ans[1]) out.println("" + ans[0] + " " + ans[1]);
		else out.println("" + ans[1] + " " + ans[0]);
	}

	public static void main(String argv[]) throws Exception {
		new Y429();
	}
}
0