結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー milanis48663220milanis48663220
提出日時 2021-03-12 22:01:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,561 bytes
コンパイル時間 1,215 ms
コンパイル使用メモリ 100,300 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-22 12:58:50
合計ジャッジ時間 5,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 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 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n; cin >> n;
    vector<int> a(n);
    multiset<int> st;
    bool ok = true;
    for(int i = 0; i < n; i++) {
        cin >> a[i];
        st.insert(a[i]);
        if(i >= 1 && a[i] < a[i-1]) ok = false;
    }
    if(ok){
        cout << 0 << endl;
        return 0;
    }
    int r = -1;
    for(int i = n-1; i >= 1; i--){
        st.erase(st.find(a[i]));
        auto p = st.end();
        if(*p > a[i]){
            r = i+1;
            break;
        }
    }
    int mn = 2e9;
    for(int i = 0; i <  r; i++){
        chmin(mn, a[i]);
    }
    int x = -1;
    for(int i = 0; i < r; i++){
        if(a[i] == mn) {
            x = i;
            break;
        }
    }
    ok = true;
    for(int i = x; ;i = (i+1)%r){
        if((i+1)%r == x) break;
        if(a[i] > a[(i+1)%r]) ok = false;
    }
    if(ok){
        cout << 1 << endl;
    }else{
        cout << 2 << endl;
    }
}
0