結果

問題 No.366 ロボットソート
ユーザー 37zigen37zigen
提出日時 2016-04-30 00:33:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 2,183 ms
コンパイル使用メモリ 77,920 KB
実行使用メモリ 55,928 KB
最終ジャッジ日時 2024-10-04 23:36:36
合計ジャッジ時間 6,941 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,968 KB
testcase_01 AC 113 ms
54,120 KB
testcase_02 AC 110 ms
53,888 KB
testcase_03 AC 120 ms
55,928 KB
testcase_04 AC 115 ms
53,852 KB
testcase_05 AC 112 ms
53,864 KB
testcase_06 AC 112 ms
54,044 KB
testcase_07 AC 110 ms
53,832 KB
testcase_08 AC 117 ms
53,836 KB
testcase_09 AC 135 ms
54,456 KB
testcase_10 AC 147 ms
54,448 KB
testcase_11 AC 192 ms
54,356 KB
testcase_12 AC 194 ms
54,456 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 135 ms
53,872 KB
testcase_21 AC 209 ms
54,448 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
		int[] a=new int[n];
		for(int i=0;i<n;i++){
			a[i]=sc.nextInt();
		}
		int count=0;
		for(int i=0;i<n;i++){
			int min=999999;
			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++){
				int 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