結果

問題 No.429 CupShuffle
ユーザー atkrymatkrym
提出日時 2016-10-20 17:18:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 979 ms / 2,000 ms
コード長 1,404 bytes
コンパイル時間 2,510 ms
コンパイル使用メモリ 80,560 KB
実行使用メモリ 56,888 KB
最終ジャッジ日時 2024-05-02 05:34:07
合計ジャッジ時間 9,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
44,480 KB
testcase_01 AC 146 ms
41,552 KB
testcase_02 AC 132 ms
41,576 KB
testcase_03 AC 132 ms
42,252 KB
testcase_04 AC 182 ms
43,128 KB
testcase_05 AC 119 ms
41,976 KB
testcase_06 AC 183 ms
43,952 KB
testcase_07 AC 182 ms
42,828 KB
testcase_08 AC 146 ms
42,416 KB
testcase_09 AC 181 ms
43,132 KB
testcase_10 AC 346 ms
48,684 KB
testcase_11 AC 977 ms
56,548 KB
testcase_12 AC 863 ms
56,004 KB
testcase_13 AC 919 ms
56,456 KB
testcase_14 AC 979 ms
56,888 KB
testcase_15 AC 138 ms
42,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        int k = sc.nextInt();
        int x = sc.nextInt();
        
        int[] ary = new int[n+1];
        int[] tmp = new int[n+1];
        
        for (int i = 0;i <= n;i++) {
            ary[i] = i;
        }
        
        for (int i = 0;i < k;i++) {
            String a = sc.next();
            String b = sc.next();
            if (a.equals("?")) {
                tmp = (int[]) ary.clone();
                continue;
            }
            swap(ary, a, b);
        }
        
        List<Integer> list = new ArrayList<>();
        for (int i = 1;i <= n;i++) {
            if (ary[i] != sc.nextInt()) list.add(ary[i]);
            if (list.size() == 2) break;
        }
        
        int[] ret = new int[3];
        for (int i = 1;i <= n;i++) {
            if (list.get(0) == tmp[i]) ret[1] = i;
            if (list.get(1) == tmp[i]) ret[2] = i;
        }
        
        Arrays.sort(ret);

        System.out.println(ret[1] + " " + ret[2]);
    }
    
    private static void swap(int[] ary, String a, String b) {
        int ai = Integer.parseInt(a);
        int bi = Integer.parseInt(b);
        int temp;
        temp = ary[ai];
        ary[ai] = ary[bi];
        ary[bi] = temp;
    }
}
0