結果

問題 No.429 CupShuffle
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-16 14:20:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,158 ms / 2,000 ms
コード長 1,311 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 79,424 KB
実行使用メモリ 59,944 KB
最終ジャッジ日時 2024-05-04 14:18:24
合計ジャッジ時間 10,628 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
44,928 KB
testcase_01 AC 158 ms
42,372 KB
testcase_02 AC 161 ms
42,444 KB
testcase_03 AC 163 ms
42,416 KB
testcase_04 AC 235 ms
43,444 KB
testcase_05 AC 159 ms
42,284 KB
testcase_06 AC 232 ms
44,984 KB
testcase_07 AC 228 ms
45,268 KB
testcase_08 AC 170 ms
42,592 KB
testcase_09 AC 236 ms
44,848 KB
testcase_10 AC 461 ms
47,956 KB
testcase_11 AC 1,062 ms
55,040 KB
testcase_12 AC 1,051 ms
59,360 KB
testcase_13 AC 1,123 ms
55,108 KB
testcase_14 AC 1,158 ms
59,944 KB
testcase_15 AC 159 ms
42,292 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