結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー ir5ir5
提出日時 2024-06-16 14:56:09
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 2,353 bytes
コンパイル時間 2,469 ms
コンパイル使用メモリ 155,472 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-16 14:56:17
合計ジャッジ時間 6,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 62 ms
5,376 KB
testcase_23 AC 17 ms
5,376 KB
testcase_24 AC 14 ms
5,376 KB
testcase_25 AC 64 ms
5,376 KB
testcase_26 AC 80 ms
5,376 KB
testcase_27 AC 70 ms
5,376 KB
testcase_28 AC 83 ms
5,376 KB
testcase_29 AC 25 ms
5,376 KB
testcase_30 AC 18 ms
5,376 KB
testcase_31 AC 76 ms
5,376 KB
testcase_32 AC 24 ms
5,376 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 27 ms
5,376 KB
testcase_35 AC 81 ms
5,376 KB
testcase_36 AC 51 ms
5,376 KB
testcase_37 AC 12 ms
5,376 KB
testcase_38 AC 76 ms
5,376 KB
testcase_39 AC 4 ms
5,376 KB
testcase_40 AC 63 ms
5,376 KB
testcase_41 AC 24 ms
5,376 KB
testcase_42 AC 30 ms
5,376 KB
testcase_43 AC 5 ms
5,376 KB
testcase_44 AC 11 ms
5,376 KB
testcase_45 AC 80 ms
5,376 KB
testcase_46 AC 79 ms
5,376 KB
testcase_47 AC 78 ms
5,376 KB
testcase_48 AC 79 ms
5,376 KB
testcase_49 AC 81 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <iostream>
#include <numeric>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <ranges>
#include <iomanip>
using namespace std;
using ll = long long;

auto range(int n) { return views::iota(0, n); }

template<class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p){ return os << "{" << p.first << ", " << p.second << "}"; }
template<typename T> ostream& operator<<(ostream& os, const vector<T>& obj) { os << "{"; for (const auto& e : obj) os << e << ", "; return os << "}"; }
template<typename T> ostream& operator<<(ostream& os, const set<T>& obj) { os << "set{"; for (const auto& e : obj) os << e << ", "; return os << "}"; }
template<typename T, typename U> ostream& operator<<(ostream& os, const map<T, U>& obj) { os << "map{"; for (const auto& e : obj) os << e << ", "; return os << "}"; }

#ifdef ONLINE_JUDGE
#define dump(expr) ;
#else
#define dump(expr) { cerr << "\033[33m#L" << __LINE__ << ": " << expr << "\033[39m" << endl; }
#endif

void jikken() {
  set<vector<int>> vis;
  queue<vector<int>> q;
  int n = 6;
  vector<int> vs0(n);
  for (int i : range(n)) vs0[i] = i;
  q.push(vs0);
  while (!q.empty()) {
    auto vs = q.front(); q.pop();

    if (vis.count(vs)) continue;
    vis.insert(vs);

    auto vs_o = vs;
    for (int k = 5; k <= n; ++k) {
      vs = vs_o;
      int x0 = vs[0];
      for (int i : range(k - 1)) vs[i] = vs[i + 1];
      vs[k - 1] = x0;

      q.push(vs);
    }
  }

  cout << vis.size() << endl;
}

ll solve() {
  int n; cin >> n;
  vector<int> vs(n);
  for (int i : range(n)) cin >> vs[i];

  bool ok0 = 1;
  for (int i : range(n - 1)) if (vs[i] > vs[i + 1]) ok0 = 0;
  if (ok0) return 0;

  vector<int> down(n);
  down[n - 1] = 1;
  for (int i = n - 2; i >= 0; i--) {
    if (vs[i] > vs[i + 1]) break;
    down[i] = 1;
  }

  int hanten = 0;
  int pos = -1;
  for (int i : views::iota(1, n)) {
    if (vs[i - 1] > vs[i]) hanten++, pos = i;
    if (hanten >= 2) return 2;

    if (hanten == 1) {
      if (vs[0] >= vs[i]) {
        if (i == n - 1) return 1;
        if (vs[pos - 1] <= vs[i + 1] && down[i + 1]) return 1;
      }
    }
  }

  return 2;
}

int main() {
  cout << fixed << setprecision(12);
  // jikken();
  cout << solve() << endl;
}
0