結果

問題 No.101 ぐるぐる!あみだくじ!
ユーザー GrenacheGrenache
提出日時 2016-05-18 21:18:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 5,000 ms
コード長 1,430 bytes
コンパイル時間 3,234 ms
コンパイル使用メモリ 78,980 KB
実行使用メモリ 56,868 KB
最終ジャッジ日時 2024-10-06 05:40:28
合計ジャッジ時間 11,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,972 KB
testcase_01 AC 188 ms
56,632 KB
testcase_02 AC 185 ms
56,500 KB
testcase_03 AC 137 ms
54,056 KB
testcase_04 AC 131 ms
53,904 KB
testcase_05 AC 185 ms
56,640 KB
testcase_06 AC 140 ms
54,220 KB
testcase_07 AC 186 ms
54,416 KB
testcase_08 AC 173 ms
54,388 KB
testcase_09 AC 167 ms
54,460 KB
testcase_10 AC 168 ms
54,156 KB
testcase_11 AC 172 ms
54,356 KB
testcase_12 AC 185 ms
56,592 KB
testcase_13 AC 184 ms
56,644 KB
testcase_14 AC 170 ms
54,696 KB
testcase_15 AC 178 ms
54,640 KB
testcase_16 AC 186 ms
56,368 KB
testcase_17 AC 190 ms
56,528 KB
testcase_18 AC 171 ms
54,396 KB
testcase_19 AC 180 ms
54,260 KB
testcase_20 AC 167 ms
54,560 KB
testcase_21 AC 183 ms
56,612 KB
testcase_22 AC 168 ms
54,480 KB
testcase_23 AC 182 ms
56,500 KB
testcase_24 AC 168 ms
54,448 KB
testcase_25 AC 180 ms
56,532 KB
testcase_26 AC 188 ms
56,644 KB
testcase_27 AC 190 ms
56,868 KB
testcase_28 AC 174 ms
54,880 KB
testcase_29 AC 184 ms
56,752 KB
testcase_30 AC 189 ms
56,584 KB
testcase_31 AC 189 ms
56,656 KB
testcase_32 AC 179 ms
54,684 KB
testcase_33 AC 185 ms
56,740 KB
testcase_34 AC 108 ms
53,028 KB
testcase_35 AC 120 ms
54,044 KB
testcase_36 AC 120 ms
53,984 KB
testcase_37 AC 135 ms
54,352 KB
testcase_38 AC 139 ms
54,168 KB
testcase_39 AC 138 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder101 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int k = sc.nextInt();

        List<Integer> a = new ArrayList<>();
        for (int i = 0; i < n; i++) {
        	a.add(i);
        }

        int[] x = new int[k];
        int[] y = new int[k];
        for (int i = 0; i < k; i++) {
        	x[i] = sc.nextInt() - 1;
        	y[i] = sc.nextInt() - 1;

        	int tmp = a.get(x[i]);
        	a.set(x[i], a.get(y[i]));
        	a.set(y[i], tmp);
        }

        List<Integer> b = new ArrayList<>(a);
        for (int i = 0; i < n; i++) {
        	b.set(a.get(i), i);
        }
        long cnt = 1;
        long ret = 1;
        int check = 0;

        for (; true; ) {
        	int j = check;
        	for (; j < n; j++) {
        		if (a.get(j) != j) {
        			break;
        		}
        	}

        	if (j == n) {
        		System.out.println(ret);
        		break;
        	} else if (j > check) {
        		cnt = ret;
                for (int i = 0; i < n; i++) {
                	b.set(a.get(i), i);
                }
                check = j;
        	}

        	List<Integer> c = new ArrayList<>(a);
            for (int i = 0; i < n; i++) {
            	c.set(b.get(i), a.get(i));
            }
            a = c;
            ret += cnt;
        }

        sc.close();
    }
}
0