結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー rym903rym903
提出日時 2021-03-18 22:12:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 2,231 bytes
コンパイル時間 1,051 ms
コンパイル使用メモリ 111,420 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 12:45:17
合計ジャッジ時間 5,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 2 ms
5,376 KB
testcase_08 AC 2 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 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 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 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 67 ms
5,376 KB
testcase_23 AC 19 ms
5,376 KB
testcase_24 AC 16 ms
5,376 KB
testcase_25 AC 71 ms
5,376 KB
testcase_26 AC 84 ms
5,376 KB
testcase_27 AC 74 ms
5,376 KB
testcase_28 AC 91 ms
5,376 KB
testcase_29 AC 27 ms
5,376 KB
testcase_30 AC 21 ms
5,376 KB
testcase_31 AC 91 ms
5,376 KB
testcase_32 AC 26 ms
5,376 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 30 ms
5,376 KB
testcase_35 AC 87 ms
5,376 KB
testcase_36 AC 66 ms
5,376 KB
testcase_37 AC 14 ms
5,376 KB
testcase_38 AC 97 ms
5,376 KB
testcase_39 AC 5 ms
5,376 KB
testcase_40 AC 79 ms
5,376 KB
testcase_41 AC 30 ms
5,376 KB
testcase_42 AC 38 ms
5,376 KB
testcase_43 AC 6 ms
5,376 KB
testcase_44 AC 14 ms
5,376 KB
testcase_45 AC 98 ms
5,376 KB
testcase_46 AC 98 ms
5,376 KB
testcase_47 AC 97 ms
5,376 KB
testcase_48 AC 97 ms
5,376 KB
testcase_49 AC 98 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<algorithm>
#include<bitset>
#include<cmath>
#include<complex>
#include<deque>
#include<functional>
#include<iomanip>
#include<iostream>
#include<iterator>
#include<map>
#include<numeric>
#include<queue>
#include<set>
#include<stack>
#include<string>
#include<unordered_map>
#include<unordered_set>
#include<utility>
#include<vector>
#include<chrono>
using namespace std;
#define rep(i,n) for(int i=0; i<(n); i++)
#define FOR(i,x,n) for(int i=x; i<(n); i++)
#define vint(a,n) vint a(n); rep(i, n) cin >> a[i];
#define vll(a,n) vll a(n); rep(i, n) cin >> a[i];
#define ALL(n) begin(n),end(n)
#define RALL(n) rbegin(n),rend(n)
#define MOD (1000000007)
// #define MOD (998244353)
#define INF (1e9+7)
#define INFL (2e18)

typedef long long ll;
typedef unsigned int ui;
typedef unsigned long long ull;
using vint=vector<int>;
using vll=vector<ll>;
using vbool=vector<bool>;
using P=pair<ll,ll>;
template<class T>using arr=vector<vector<T>>;
template<class T>int popcount(T &a){int c=0; rep(i, 8*(int)sizeof(a)){if((a>>i)&1) c++;} return c;}
template<class T>void pl(T x){cout << x << " ";}
template<class T>void pr(T x){cout << x << endl;}
template <class T, class... Ts> inline void pr(T Tar, Ts... ts) { std::cout << Tar << " "; pr(ts...); return; }
template<class T>void prvec(vector<T>& a){rep(i, (int)a.size()-1){pl(a[i]);} pr(a.back());}
template<class T>void prarr(arr<T>& a){rep(i, (int)a.size()) if(a[i].empty()) pr(""); else prvec(a[i]);}
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
template<typename A, size_t N, typename T> void Fill(A (&array)[N], const T &val){fill( (T*)array, (T*)(array+N), val );}

int main()
{
    int n; cin >> n;
    vint(a, n);
    vint b = a;
    sort(ALL(b));

    int pos = -1;
    for(int i=n-1; i>=0; i--){
        if(a[i] != b[i]){
            pos = i;
            break;
        }
    }

    if(pos == -1){
        pr(0);
        return 0;
    }

    if(a[0] < a[pos]){
        pr(2);
        return 0;
    }

    int cnt = 0;
    rep(i, pos){
        if(a[i] > a[i+1]) cnt++;
    }

    if(cnt==1){
        pr(1);
    }else pr(2);
    
    return 0;}
0