結果

問題 No.366 ロボットソート
ユーザー crazybbb3crazybbb3
提出日時 2016-11-27 23:08:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,562 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 77,548 KB
実行使用メモリ 38,464 KB
最終ジャッジ日時 2024-05-05 14:24:10
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,876 KB
testcase_01 AC 47 ms
37,120 KB
testcase_02 AC 48 ms
37,004 KB
testcase_03 AC 47 ms
37,120 KB
testcase_04 AC 46 ms
37,192 KB
testcase_05 AC 47 ms
37,280 KB
testcase_06 AC 45 ms
37,236 KB
testcase_07 AC 44 ms
36,860 KB
testcase_08 AC 46 ms
37,272 KB
testcase_09 AC 48 ms
36,840 KB
testcase_10 AC 46 ms
37,136 KB
testcase_11 AC 52 ms
36,824 KB
testcase_12 AC 56 ms
37,880 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 46 ms
37,140 KB
testcase_21 AC 69 ms
38,464 KB
testcase_22 AC 72 ms
38,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        int n = ni();
        int k = ni();
        int[] a = nia(n);

        int ans = 0;

        for (int i = 0; i < k; i++) {
            for (int j = i; j < n - k; j += k) {
                for (int l = i; l < n - k - j; l += k) {
                    if (a[l] > a[l + k]) {
                        ans++;
                        int tmp = a[l];
                        a[l] = a[l + k];
                        a[l + k] = tmp;
                    }
                }
            }
        }

        for (int i = 0; i < n - 1; i++) {
            if (a[i] > a[i + 1]) {
                out.println(-1);
                return;
            }
        }

        out.println(ans);
    }

    int lowerBound(int[] a, long x) {
        int high = a.length;
        int low = 0;
        while (high > low) {
            int mid = (high + low) / 2;
            if (a[mid] < x) {
                low = mid + 1;
            } else {
                high = mid;
            }
        }
        return low;
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0