結果

問題 No.366 ロボットソート
ユーザー saltcandy123saltcandy123
提出日時 2016-04-29 23:00:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 67,176 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-28 15:11:36
合計ジャッジ時間 1,582 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,376 KB
testcase_21 AC 3 ms
4,376 KB
testcase_22 AC 3 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <string>
#include <vector>

using namespace std;

int main() {
  int n, k;
  int a[1000];
  int count = 0;
  cin >> n >> k;
  for (int ni = 0; ni < n; ++ni) {
    cin >> a[ni];
  }
  for (int d = 0; d < k; ++d) {
    vector<int> b;
    for (int i = d; i < n; i += k) {
      b.push_back(a[i]);
    }
    for (size_t i = 0; i < b.size(); ++i) {
      for (size_t j = i + 1; j < b.size(); ++j) {
        if (b[i] > b[j]) {
          ++count;
        }
      }
    }
    sort(b.begin(), b.end());
    for (size_t i = 0; i < b.size(); ++i) {
      a[d + k * i] = b[i];
    }
  }
  for (int ni = 0; ni < n - 1; ++ni) {
    if (a[ni] > a[ni + 1]) {
      cout << -1 << endl;
      return 0;
    }
  }
  cout << count << endl;
  return 0;
}
0