結果

問題 No.429 CupShuffle
ユーザー atkrymatkrym
提出日時 2016-10-20 17:18:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,026 ms / 2,000 ms
コード長 1,404 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 83,264 KB
実行使用メモリ 57,160 KB
最終ジャッジ日時 2024-11-22 16:39:19
合計ジャッジ時間 9,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
43,584 KB
testcase_01 AC 145 ms
41,880 KB
testcase_02 AC 155 ms
42,444 KB
testcase_03 AC 131 ms
41,912 KB
testcase_04 AC 192 ms
44,084 KB
testcase_05 AC 144 ms
42,424 KB
testcase_06 AC 208 ms
44,348 KB
testcase_07 AC 198 ms
44,148 KB
testcase_08 AC 155 ms
41,688 KB
testcase_09 AC 205 ms
44,788 KB
testcase_10 AC 382 ms
48,568 KB
testcase_11 AC 947 ms
56,492 KB
testcase_12 AC 829 ms
54,656 KB
testcase_13 AC 948 ms
56,684 KB
testcase_14 AC 1,026 ms
57,160 KB
testcase_15 AC 139 ms
42,416 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