結果

問題 No.366 ロボットソート
ユーザー mitsuomitsuo
提出日時 2016-05-09 21:45:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 1,391 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 78,196 KB
実行使用メモリ 53,264 KB
最終ジャッジ日時 2024-06-09 10:26:24
合計ジャッジ時間 8,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,684 KB
testcase_01 AC 130 ms
41,188 KB
testcase_02 AC 127 ms
41,320 KB
testcase_03 AC 127 ms
41,276 KB
testcase_04 AC 130 ms
40,904 KB
testcase_05 AC 130 ms
40,756 KB
testcase_06 AC 130 ms
41,440 KB
testcase_07 AC 132 ms
41,264 KB
testcase_08 AC 132 ms
41,044 KB
testcase_09 AC 115 ms
39,760 KB
testcase_10 AC 165 ms
42,228 KB
testcase_11 AC 411 ms
51,308 KB
testcase_12 AC 504 ms
53,216 KB
testcase_13 AC 289 ms
48,840 KB
testcase_14 AC 317 ms
49,484 KB
testcase_15 AC 200 ms
45,348 KB
testcase_16 AC 279 ms
48,932 KB
testcase_17 AC 313 ms
49,560 KB
testcase_18 AC 496 ms
53,044 KB
testcase_19 AC 309 ms
49,384 KB
testcase_20 AC 127 ms
40,896 KB
testcase_21 AC 395 ms
53,164 KB
testcase_22 AC 508 ms
53,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.l2.q366;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(List<String> in) {
		int N = Integer.valueOf(in.get(0).split(" ")[0]);
		int K = Integer.valueOf(in.get(0).split(" ")[1]);
		int[][] a = new int[N][];
		int count = 0;

		for (int i = 0; i < N; i++) {
			a[i] = new int[N];
		}

		for (int i = 0; i < N; i++) {
			int x = i % K;
			int y = i / K;
			a[x][y] = Integer.valueOf(in.get(1).split(" ")[i]);
//			System.out.println(x + ", " +y + "=" + a[x][y]);
		}
		for (int i = 0; i < N; i++) {
			count += sort(a[i]);
		}

		for (int i = 0; i < N - 1; i++) {
			int x = i % K;
			int y = i / K;
			int nx = (i + 1) % K;
			int ny = (i + 1) / K;
			if (a[nx][ny] < a[x][y] && a[x][y] > 0 && a[nx][ny] > 0) {
				return -1;
			}
		}

		return count;
	}

	private static int sort(int[] ar) {
		int c = 0;
		for (int i = 0; i < ar.length; i++) {
			for (int j = i + 1; j < ar.length; j++) {
				if (ar[i] > 0 && ar[j] > 0 && ar[j] < ar[i]) {
					int tmp = ar[j];
					ar[j] = ar[i];
					ar[i] = tmp;
					c++;
				}

			}
		}
		return c;
	}
}
0