結果

問題 No.366 ロボットソート
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 00:18:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 1,921 ms
コンパイル使用メモリ 77,432 KB
実行使用メモリ 43,196 KB
最終ジャッジ日時 2024-07-18 08:10:25
合計ジャッジ時間 6,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,420 KB
testcase_01 AC 122 ms
41,692 KB
testcase_02 AC 116 ms
41,476 KB
testcase_03 AC 130 ms
41,504 KB
testcase_04 AC 126 ms
41,156 KB
testcase_05 AC 132 ms
41,864 KB
testcase_06 AC 112 ms
41,892 KB
testcase_07 AC 106 ms
41,500 KB
testcase_08 AC 112 ms
41,760 KB
testcase_09 AC 120 ms
41,600 KB
testcase_10 AC 144 ms
41,848 KB
testcase_11 AC 182 ms
42,980 KB
testcase_12 AC 174 ms
43,196 KB
testcase_13 AC 158 ms
42,236 KB
testcase_14 AC 159 ms
42,472 KB
testcase_15 AC 149 ms
41,720 KB
testcase_16 AC 153 ms
41,820 KB
testcase_17 AC 172 ms
42,600 KB
testcase_18 AC 185 ms
42,648 KB
testcase_19 AC 177 ms
41,920 KB
testcase_20 AC 112 ms
41,820 KB
testcase_21 AC 179 ms
42,424 KB
testcase_22 AC 187 ms
42,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	static int cnt = 0;
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int K = scan.nextInt();
		int []a = new int[N];
		int []b = new int[N];
		for(int i = 0; i < N; i++) {
			a[i] = scan.nextInt();
			b[i] = a[i];
		}
		scan.close();
		Arrays.sort(b);
		for(int i = 0; i < K; i++) {
			kStepBubbleSort(a, N - i, K);
		}
		for(int i = 0; i < N; i++) {
			if(a[i] != b[i]) {
				System.out.println("-1");
				System.exit(0);
			}
		}
		System.out.println(cnt);
//		for(int i : a) {
//			System.out.print(i + " ");
//		}
//		System.out.println();
	}
	static void kStepBubbleSort(int[]A, int n, int K) {
		boolean flag = true;
		while(flag) {
			flag = false;
			for(int i = n - 1; i - K >= 0; i -= K) {
				if(A[i] < A[i - K]) {
					int t = A[i];
					A[i] = A[i - K];
					A[i - K] = t;
					flag = true;
					cnt ++;
				}
			}
		}
	}
}
0