結果
問題 | No.1095 Smallest Kadomatsu Subsequence |
ユーザー | ningenMe |
提出日時 | 2020-06-26 23:20:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 7,116 bytes |
コンパイル時間 | 2,303 ms |
コンパイル使用メモリ | 217,316 KB |
実行使用メモリ | 20,332 KB |
最終ジャッジ日時 | 2024-07-05 00:02:25 |
合計ジャッジ時間 | 5,291 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 8 ms
6,944 KB |
testcase_14 | AC | 8 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | AC | 8 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | AC | 9 ms
6,944 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 8 ms
6,940 KB |
testcase_23 | AC | 162 ms
20,280 KB |
testcase_24 | AC | 166 ms
20,328 KB |
testcase_25 | AC | 166 ms
20,240 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 145 ms
20,240 KB |
testcase_29 | AC | 144 ms
20,148 KB |
testcase_30 | AC | 160 ms
20,236 KB |
testcase_31 | AC | 155 ms
20,140 KB |
testcase_32 | AC | 157 ms
20,268 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define ALL(obj) (obj).begin(),(obj).end() #define SPEED cin.tie(0);ios::sync_with_stdio(false); template<class T> using PQ = priority_queue<T>; template<class T> using PQR = priority_queue<T,vector<T>,greater<T>>; constexpr long long MOD = (long long)1e9 + 7; constexpr long long MOD2 = 998244353; constexpr long long HIGHINF = (long long)1e18; constexpr long long LOWINF = (long long)1e15; 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, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} template <template <class tmp> class T, class U> ostream &operator<<(ostream &o, const T<U> &obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr)o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; 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);} 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 */ template<class Operator> class SegmentTree { using TypeNode = typename Operator::TypeNode; size_t length; size_t num; vector<TypeNode> node; vector<pair<size_t,size_t>> range; public: //unitで初期化 SegmentTree(const size_t num): num(num) { for (length = 1; length < num; length *= 2); node.resize(2 * length, Operator::unit_node); 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); } //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]; 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); } //同じ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); range.resize(2 * length); for (int i = 0; i < length; ++i) node[i+length] = init; 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); } //[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); } //return [0,length] int prefix_binary_search(TypeNode var) { if(!Operator::func_check(node[1],var)) return num; TypeNode ret = Operator::unit_node; size_t idx = 2; for(; idx < 2*length; idx<<=1){ if(!Operator::func_check(Operator::func_node(ret,node[idx]),var)) { ret = Operator::func_node(ret,node[idx]); idx++; } } return min((idx>>1) - length,num); } //range[l,r) return [l,r] int binary_search(size_t l, size_t r, TypeNode var) { if (l < 0 || length <= l || r < 0 || length < r) return -1; 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; } }; //一点更新 区間最小 template<class T> struct NodeMinPointUpdate { using TypeNode = T; inline static constexpr TypeNode unit_node = LOWINF; inline static constexpr TypeNode func_node(TypeNode l,TypeNode r){return min(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 NodeMaxPointUpdate { using TypeNode = T; inline static constexpr TypeNode unit_node = 0; inline static constexpr TypeNode func_node(TypeNode l,TypeNode r){return min(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;} }; int main() { int N; cin >> N; vector<ll> A(N); for(int i = 0; i < N; ++i) cin >> A[i]; SegmentTree<NodeMinPointUpdate<ll>> seg(N); vector<pair<ll,ll>> B(N); for(int i = 0; i < N; ++i) B[i] = {A[i],i}; sort(ALL(B),greater<>()); ll ans = LOWINF; for(int i = 0; i < N; ++i) { auto [x,j]=B[i]; seg.update(j,x); ll l = seg.get(0,i); ll r = seg.get(i+1,N); if(l==LOWINF || r==LOWINF) continue; if(l>A[i]&&A[i]<r) { chmin(ans,l+A[i]+r); } } for(int i = 1; i+1 < N; ++i) { ll l = seg.get(0,i); ll r = seg.get(i+1,N); if(l<A[i]&&A[i]>r) { chmin(ans,l+A[i]+r); } } if(ans==LOWINF) ans = -1; cout << ans << endl; return 0; }