結果

問題 No.429 CupShuffle
ユーザー fjafjafjafjafjafja
提出日時 2017-09-10 22:17:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,020 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 3,835 ms
コンパイル使用メモリ 79,232 KB
実行使用メモリ 59,596 KB
最終ジャッジ日時 2024-11-07 12:52:43
合計ジャッジ時間 11,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
45,044 KB
testcase_01 AC 154 ms
42,164 KB
testcase_02 AC 160 ms
42,336 KB
testcase_03 AC 158 ms
41,984 KB
testcase_04 AC 227 ms
43,496 KB
testcase_05 AC 158 ms
42,224 KB
testcase_06 AC 233 ms
44,776 KB
testcase_07 AC 231 ms
45,416 KB
testcase_08 AC 170 ms
42,356 KB
testcase_09 AC 226 ms
44,888 KB
testcase_10 AC 465 ms
48,268 KB
testcase_11 AC 928 ms
53,856 KB
testcase_12 AC 984 ms
57,492 KB
testcase_13 AC 1,015 ms
54,524 KB
testcase_14 AC 1,020 ms
59,596 KB
testcase_15 AC 152 ms
42,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N429 {

	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt(),K=sc.nextInt(),X=sc.nextInt();
		int[] h=new int[N],hh=new int[N];
		int[] a=new int[K],b=new int[K];
		for(int i=0;i<N;i++)
		{
			h[i]=i+1;
		}
		for(int i=0;i<X-1;i++)
		{
			a[i]=sc.nextInt();b[i]=sc.nextInt();
		}
		String[] buf=new String[2];
		buf[0]=sc.next();buf[1]=sc.next();
	//	String buf=sc.next();
		for(int i=X;i<K;i++)
		{
			a[i]=sc.nextInt();b[i]=sc.nextInt();
		}

		for(int i=0;i<N;i++)
		{
			hh[i]=sc.nextInt();
		}

		for(int i=0;i<X-1;i++)
		{
			swap(h,a[i]-1,b[i]-1);
		}
		for(int i=K-1;i>=X;i--)
		{
			swap(hh,a[i]-1,b[i]-1);
		}

		int[] ans=new int[2];
		int p=-1;
		for(int i=0;i<N;i++)
		{
			if(h[i]!=hh[i]&&p==-1){ans[0]=i+1;p=h[i];}
			if(p==hh[i]){ans[1]=i+1;break;}
		}

		System.out.println(ans[0]+" "+ans[1]);

	}



	static void swap(int[] h,int n1,int n2)
	{
		int buf=h[n1];
		h[n1]=h[n2];
		h[n2]=buf;
	}

}
0