結果
問題 | No.1425 Yet Another Cyclic Shifts Sorting |
ユーザー | ningenMe |
提出日時 | 2021-03-12 23:54:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 58 ms / 2,000 ms |
コード長 | 8,340 bytes |
コンパイル時間 | 2,673 ms |
コンパイル使用メモリ | 219,148 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-10-14 16:27:59 |
合計ジャッジ時間 | 5,134 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 35 ms
17,664 KB |
testcase_23 | AC | 10 ms
7,040 KB |
testcase_24 | AC | 10 ms
6,912 KB |
testcase_25 | AC | 36 ms
17,664 KB |
testcase_26 | AC | 40 ms
18,048 KB |
testcase_27 | AC | 58 ms
17,408 KB |
testcase_28 | AC | 57 ms
18,012 KB |
testcase_29 | AC | 16 ms
7,040 KB |
testcase_30 | AC | 14 ms
6,784 KB |
testcase_31 | AC | 55 ms
17,664 KB |
testcase_32 | AC | 21 ms
6,912 KB |
testcase_33 | AC | 4 ms
5,248 KB |
testcase_34 | AC | 24 ms
10,112 KB |
testcase_35 | AC | 53 ms
17,536 KB |
testcase_36 | AC | 40 ms
17,024 KB |
testcase_37 | AC | 8 ms
5,248 KB |
testcase_38 | AC | 54 ms
17,828 KB |
testcase_39 | AC | 3 ms
5,248 KB |
testcase_40 | AC | 45 ms
17,408 KB |
testcase_41 | AC | 17 ms
7,040 KB |
testcase_42 | AC | 23 ms
10,112 KB |
testcase_43 | AC | 5 ms
5,248 KB |
testcase_44 | AC | 8 ms
5,248 KB |
testcase_45 | AC | 53 ms
17,792 KB |
testcase_46 | AC | 54 ms
17,792 KB |
testcase_47 | AC | 54 ms
17,920 KB |
testcase_48 | AC | 54 ms
17,764 KB |
testcase_49 | AC | 54 ms
17,920 KB |
testcase_50 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using int128 = __int128_t; using int64 = long long; using int32 = int; using uint128 = __uint128_t; using uint64 = unsigned long long; using uint32 = unsigned int; #define ALL(obj) (obj).begin(),(obj).end() template<class T> using priority_queue_reverse = priority_queue<T,vector<T>,greater<T>>; constexpr int64 MOD = 1'000'000'000LL + 7; //' constexpr int64 MOD2 = 998244353; constexpr int64 HIGHINF = 1'000'000'000'000'000'000LL; constexpr int64 LOWINF = 1'000'000'000'000'000LL; //' constexpr long double PI = 3.1415926535897932384626433L; template <class T> vector<T> multivector(size_t N,T init){return vector<T>(N,init);} template <class... T> auto multivector(size_t N,T... t){return vector<decltype(multivector(t...))>(N,multivector(t...));} template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; exit(0);}} template <class T, class U>ostream &operator<<(ostream &o, const map<T, U>&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;} template <class T>ostream &operator<<(ostream &o, const set<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const multiset<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const deque<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template <class T, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} void print(void) {cout << endl;} template <class Head> void print(Head&& head) {cout << head;print();} template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward<Tail>(tail)...);} template <class T> void chmax(T& a, const T b){a=max(a,b);} template <class T> void chmin(T& a, const T b){a=min(a,b);} vector<string> split(const string &str, const char delemiter) {vector<string> res;stringstream ss(str);string buffer; while( getline(ss, buffer, delemiter) ) res.push_back(buffer); return res;} inline constexpr int msb(int x) {return x?31-__builtin_clz(x):-1;} inline constexpr int64 ceil_div(const int64 a,const int64 b) {return (a+(b-1))/b;}// return ceil(a/b) void YN(bool flg) {cout << (flg ? "YES" : "NO") << endl;} void Yn(bool flg) {cout << (flg ? "Yes" : "No") << endl;} void yn(bool flg) {cout << (flg ? "yes" : "no") << endl;} /* * @title SegmentTree - 非再帰抽象化セグメント木 * @docs md/segment/SegmentTree.md */ template<class Operator> class SegmentTree { using TypeNode = typename Operator::TypeNode; size_t length; size_t num; vector<TypeNode> node; vector<pair<int,int>> range; inline void build() { for (int i = length - 1; i >= 0; --i) node[i] = Operator::func_node(node[(i<<1)+0],node[(i<<1)+1]); range.resize(2 * length); for (int i = 0; i < length; ++i) range[i+length] = make_pair(i,i+1); for (int i = length - 1; i >= 0; --i) range[i] = make_pair(range[(i<<1)+0].first,range[(i<<1)+1].second); } public: //unitで初期化 SegmentTree(const size_t num): num(num) { for (length = 1; length <= num; length *= 2); node.resize(2 * length, Operator::unit_node); build(); } //vectorで初期化 SegmentTree(const vector<TypeNode> & vec) : num(vec.size()) { for (length = 1; length <= vec.size(); length *= 2); node.resize(2 * length, Operator::unit_node); for (int i = 0; i < vec.size(); ++i) node[i + length] = vec[i]; build(); } //同じinitで初期化 SegmentTree(const size_t num, const TypeNode init) : num(num) { for (length = 1; length <= num; length *= 2); node.resize(2 * length, Operator::unit_node); for (int i = 0; i < length; ++i) node[i+length] = init; build(); } //[idx,idx+1) void update(size_t idx, const TypeNode var) { if(idx < 0 || length <= idx) return; idx += length; node[idx] = Operator::func_merge(node[idx],var); while(idx >>= 1) node[idx] = Operator::func_node(node[(idx<<1)+0],node[(idx<<1)+1]); } //[l,r) TypeNode get(int l, int r) { if (l < 0 || length <= l || r < 0 || length < r) return Operator::unit_node; TypeNode vl = Operator::unit_node, vr = Operator::unit_node; for(l += length, r += length; l < r; l >>=1, r >>=1) { if(l&1) vl = Operator::func_node(vl,node[l++]); if(r&1) vr = Operator::func_node(node[--r],vr); } return Operator::func_node(vl,vr); } //range[l,r) return [l,r] search max right int prefix_binary_search(int l, int r, TypeNode var) { assert(0 <= l && l < length && 0 < r && r <= length); TypeNode ret = Operator::unit_node; size_t off = l; for(size_t idx = l+length; idx < 2*length && off < r; ){ if(range[idx].second<=r && !Operator::func_check(Operator::func_node(ret,node[idx]),var)) { ret = Operator::func_node(ret,node[idx]); off = range[idx++].second; if(!(idx&1)) idx >>= 1; } else{ idx <<=1; } } return off; } //range(l,r] return [l,r] search max left int suffix_binary_search(const int l, const int r, const TypeNode var) { assert(-1 <= l && l < (int)length-1 && 0 <= r && r < length); TypeNode ret = Operator::unit_node; int off = r; for(size_t idx = r+length; idx < 2*length && l < off; ){ if(l < range[idx].first && !Operator::func_check(Operator::func_node(node[idx],ret),var)) { ret = Operator::func_node(node[idx],ret); off = range[idx--].first-1; if(idx&1) idx >>= 1; } else{ idx = (idx<<1)+1; } } return off; } void print(){ // cout << "node" << endl; // for(int i = 1,j = 1; i < 2*length; ++i) { // cout << node[i] << " "; // if(i==((1<<j)-1) && ++j) cout << endl; // } cout << "vector" << endl; cout << "{ " << get(0,1); for(int i = 1; i < length; ++i) cout << ", " << get(i,i+1); cout << " }" << endl; } }; //一点更新 区間最小 template<class T> struct NodeMaxPointUpdate { using TypeNode = T; inline static constexpr TypeNode unit_node = 0; inline static constexpr TypeNode func_node(TypeNode l,TypeNode r){return max(l,r);} inline static constexpr TypeNode func_merge(TypeNode l,TypeNode r){return r;} inline static constexpr bool func_check(TypeNode nodeVal,TypeNode var){return var > nodeVal;} }; //一点更新 区間最小 template<class T> struct NodeSumPointUpdate { using TypeNode = T; inline static constexpr TypeNode unit_node = 0; inline static constexpr TypeNode func_node(TypeNode l,TypeNode r){return l+r;} inline static constexpr TypeNode func_merge(TypeNode l,TypeNode r){return r;} inline static constexpr bool func_check(TypeNode nodeVal,TypeNode var){return var > nodeVal;} }; /** * @url * @est */ int main() { cin.tie(0);ios::sync_with_stdio(false); int N; cin >> N; vector<int> A(N),B,C(N,0); for(int i=0;i<N;++i) cin >> A[i]; for(int i=0;i+1<N;++i) C[i] = (A[i]>A[i+1]); B = A; sort(ALL(B)); SegmentTree<NodeMaxPointUpdate<int>> ma(A); SegmentTree<NodeSumPointUpdate<int>> su(C); corner(A==B,0); corner(su.get(0,N)==1 && A[0] >= A[N-1],1); for(int i = N-1; 1 <= i; --i) { if(B[i]!=A[i]) break; if(ma.get(0,i)>A[i]) continue; if(su.get(0,i-1)!=1) continue; if(A[0]<A[i-1]) continue; cout << 1 << endl; return 0; } cout << 2 << endl; return 0; }