結果

問題 No.366 ロボットソート
ユーザー 37zigen37zigen
提出日時 2016-04-30 00:37:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 77,940 KB
実行使用メモリ 54,608 KB
最終ジャッジ日時 2024-06-09 10:24:03
合計ジャッジ時間 6,018 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,660 KB
testcase_01 AC 113 ms
53,616 KB
testcase_02 AC 115 ms
54,032 KB
testcase_03 AC 114 ms
54,016 KB
testcase_04 AC 103 ms
52,884 KB
testcase_05 AC 104 ms
54,200 KB
testcase_06 AC 132 ms
54,092 KB
testcase_07 AC 129 ms
53,980 KB
testcase_08 AC 127 ms
54,244 KB
testcase_09 AC 113 ms
53,620 KB
testcase_10 AC 127 ms
53,856 KB
testcase_11 AC 171 ms
53,996 KB
testcase_12 AC 171 ms
54,344 KB
testcase_13 AC 152 ms
54,200 KB
testcase_14 AC 157 ms
54,320 KB
testcase_15 AC 147 ms
54,324 KB
testcase_16 AC 150 ms
54,244 KB
testcase_17 AC 161 ms
54,040 KB
testcase_18 AC 179 ms
54,408 KB
testcase_19 AC 165 ms
54,384 KB
testcase_20 AC 114 ms
53,888 KB
testcase_21 AC 176 ms
54,608 KB
testcase_22 AC 182 ms
54,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int k=sc.nextInt();
		long[] a=new long[n];
		for(int i=0;i<n;i++){
			a[i]=sc.nextLong();
		}
		int count=0;
		for(int i=0;i<n;i++){
			long min=999999999;
			int m=-1;
			for(int j=0;i+j*k<n;j++){
				if(min>a[i+j*k]){
					m=i+j*k;
					min=a[i+j*k];
				}
			}
			for(int j=0;m-(j+1)*k>=i;j++){
				long d=a[m-j*k];
				a[m-j*k]=a[m-(j+1)*k];
				a[m-(j+1)*k]=d;
				count++;
			}
		}
		for(int i=0;i+1<n;i++){
			if(a[i]>a[i+1]){
				System.out.println(-1);
				return;
			}
		}
		System.out.println(count);
		
	}
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}

}
0