結果

問題 No.366 ロボットソート
ユーザー ki_ki33ki_ki33
提出日時 2016-04-29 23:30:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,074 bytes
コンパイル時間 2,234 ms
コンパイル使用メモリ 77,620 KB
実行使用メモリ 54,772 KB
最終ジャッジ日時 2024-06-09 10:22:55
合計ジャッジ時間 5,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,136 KB
testcase_01 AC 111 ms
54,144 KB
testcase_02 AC 109 ms
53,824 KB
testcase_03 AC 106 ms
53,052 KB
testcase_04 AC 103 ms
53,080 KB
testcase_05 AC 113 ms
53,836 KB
testcase_06 AC 114 ms
54,000 KB
testcase_07 AC 103 ms
52,848 KB
testcase_08 AC 112 ms
53,876 KB
testcase_09 AC 110 ms
53,804 KB
testcase_10 AC 127 ms
54,096 KB
testcase_11 AC 163 ms
54,316 KB
testcase_12 AC 153 ms
54,548 KB
testcase_13 AC 154 ms
54,312 KB
testcase_14 AC 150 ms
54,276 KB
testcase_15 AC 142 ms
54,404 KB
testcase_16 AC 149 ms
54,768 KB
testcase_17 AC 147 ms
54,320 KB
testcase_18 AC 163 ms
54,144 KB
testcase_19 AC 157 ms
54,324 KB
testcase_20 AC 114 ms
54,360 KB
testcase_21 AC 177 ms
54,772 KB
testcase_22 AC 183 ms
54,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	static final long C =  1000000007;
	static final int CY = 1000000000;
	StringBuilder sb;

	public void calc() {
		sb = new StringBuilder();
		BufferedInputStream bs = new BufferedInputStream(System.in);

		Scanner sc = new Scanner(bs);

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

		int[][] a = new int[k][1+n/k];
		for (int i=0; i < k; i++) {
			Arrays.fill(a[i], Integer.MAX_VALUE);
		}
		for (int i=0; i < n; i++) {
			a[i%k][i/k] = sc.nextInt();
			//System.out.println(i%k+":"+i/k);
		}


		long ans = 0;
		for (int v = 0; v < k; v++) {
			for (int i=0; i < a[v].length; i++) {
				for (int t=0; t <i; t++) {
					if (a[v][i] == Integer.MAX_VALUE) break;
					if (a[v][i] < a[v][t]) ans++;
				}
			}
			Arrays.sort(a[v]);
		}
		for (int i=1; i < n; i++) {
			if (a[(i-1)%k][(i-1)/k] > a[i%k][i/k]){
				ans = -1;
				break;
			}
		}

		System.out.println(ans);
	}

	public static void main(String[] args) {
		Main main = new Main();
		main.calc();

	}
}
0