結果

問題 No.366 ロボットソート
ユーザー htensaihtensai
提出日時 2019-11-21 11:18:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 79,756 KB
実行使用メモリ 58,964 KB
最終ジャッジ日時 2024-10-09 13:43:14
合計ジャッジ時間 7,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,084 KB
testcase_01 AC 130 ms
54,112 KB
testcase_02 AC 127 ms
54,144 KB
testcase_03 AC 116 ms
53,140 KB
testcase_04 AC 128 ms
54,212 KB
testcase_05 AC 117 ms
53,096 KB
testcase_06 AC 131 ms
54,208 KB
testcase_07 AC 117 ms
53,008 KB
testcase_08 AC 134 ms
54,068 KB
testcase_09 AC 132 ms
54,216 KB
testcase_10 AC 144 ms
54,376 KB
testcase_11 AC 195 ms
54,360 KB
testcase_12 AC 198 ms
54,396 KB
testcase_13 AC 182 ms
54,424 KB
testcase_14 AC 186 ms
54,608 KB
testcase_15 AC 170 ms
54,408 KB
testcase_16 AC 166 ms
54,296 KB
testcase_17 AC 188 ms
54,504 KB
testcase_18 AC 209 ms
56,912 KB
testcase_19 AC 188 ms
54,504 KB
testcase_20 AC 131 ms
54,140 KB
testcase_21 AC 197 ms
54,400 KB
testcase_22 AC 323 ms
58,964 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 k = sc.nextInt();
		int[] arr = new int[n];
		HashMap<Integer, Integer> map = new HashMap<>();
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		    map.put(arr[i], i);
		}
		int[] sorted = (int[])(arr.clone());
		Arrays.sort(sorted);
		int count = 0;
		for (int i = 0; i < n - 1; i++) {
		    int idx = map.get(sorted[i]);
		    if (i == idx) {
		        continue;
		    }
		    if ((idx - i) % k != 0) {
		        System.out.println(-1);
		        return;
		    }
		    while (i < idx) {
		        int tmp = arr[idx - k];
		        arr[idx - k] = arr[idx];
		        arr[idx] = tmp;
		        map.put(sorted[i], idx - k);
		        map.put(arr[idx], idx);
		        idx -= k;
		        count++;
		    }
		}
	    System.out.println(count);
	}
}
0