結果

問題 No.429 CupShuffle
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 14:20:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 934 ms / 2,000 ms
コード長 1,311 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 78,972 KB
実行使用メモリ 60,580 KB
最終ジャッジ日時 2024-11-26 02:16:01
合計ジャッジ時間 9,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
44,996 KB
testcase_01 AC 135 ms
42,252 KB
testcase_02 AC 154 ms
42,368 KB
testcase_03 AC 162 ms
42,332 KB
testcase_04 AC 205 ms
44,792 KB
testcase_05 AC 154 ms
42,252 KB
testcase_06 AC 198 ms
45,616 KB
testcase_07 AC 207 ms
45,132 KB
testcase_08 AC 159 ms
42,564 KB
testcase_09 AC 208 ms
45,592 KB
testcase_10 AC 421 ms
48,468 KB
testcase_11 AC 874 ms
55,896 KB
testcase_12 AC 822 ms
59,764 KB
testcase_13 AC 912 ms
54,980 KB
testcase_14 AC 934 ms
60,580 KB
testcase_15 AC 141 ms
42,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] Cupf = new int [N];
        for(int i=0; i<N; i++){
            Cupf[i]=i+1;
        }
        int K = sc.nextInt();
        int [] A = new int [K];
        int [] B = new int [K];
        int X = sc.nextInt();
        for(int i=0; i<K; i++){
            if(i!=X-1){
                A[i]=sc.nextInt();
                B[i]=sc.nextInt();
            }else{
                String x=sc.next();
                String y=sc.next();
            }
        }
        
        for(int i=0; i<X-1; i++){
            int t = Cupf[ A[i]-1 ];
            Cupf[ A[i]-1 ] = Cupf[ B[i]-1 ];
            Cupf[ B[i]-1 ] = t;
        }
        

        int [] Cupt = new int [N];
        for(int i=0; i<N; i++){
            Cupt[i]=sc.nextInt();
        }
        for(int i=K-1; i>X-1; i--){
            int t = Cupt[ A[i]-1 ];
            Cupt[ A[i]-1 ] = Cupt[ B[i]-1 ];
            Cupt[ B[i]-1 ] = t;
        }
        int [] r = new int [2];
        int z =0;
        for(int i=0; i<N; i++){
            if(Cupf[i]!=Cupt[i]){
                r[z]=i+1;
                z++;
            }
        }
        System.out.println(r[0]+" "+r[1]);
    }
}
0