結果
問題 | No.1095 Smallest Kadomatsu Subsequence |
ユーザー | siro53 |
提出日時 | 2020-06-26 21:47:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,718 bytes |
コンパイル時間 | 2,291 ms |
コンパイル使用メモリ | 216,592 KB |
実行使用メモリ | 19,840 KB |
最終ジャッジ日時 | 2024-07-04 20:36:07 |
合計ジャッジ時間 | 5,074 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 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 | WA | - |
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 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 7 ms
5,376 KB |
testcase_14 | AC | 8 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | AC | 8 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 8 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 7 ms
5,376 KB |
testcase_23 | AC | 137 ms
10,368 KB |
testcase_24 | AC | 136 ms
10,368 KB |
testcase_25 | AC | 138 ms
10,492 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 172 ms
19,840 KB |
testcase_29 | AC | 176 ms
19,716 KB |
testcase_30 | AC | 150 ms
15,104 KB |
testcase_31 | AC | 151 ms
14,980 KB |
testcase_32 | AC | 150 ms
15,100 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; 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; } void debug() { cerr << "\n"; } template <class T> void debug(const T &x) { cerr << x << "\n"; } template <class T, class... Args> void debug(const T &x, const Args &... args) { cerr << x << " "; debug(args...); } template <class T> void debugVector(const vector<T> &v) { for(const T &x : v) { cerr << x << " "; } cerr << "\n"; } using ll = long long; #define ALL(v) (v).begin(), (v).end() #define RALL(v) (v).rbegin(), (v).rend() const double EPS = 1e-7; const int INF = 1 << 30; const ll LLINF = 1LL << 60; const double PI = acos(-1); constexpr int MOD = 1000000007; const int dx[4] = {1, 0, -1, 0}; const int dy[4] = {0, 1, 0, -1}; //------------------------------------- template <typename Monoid> struct SegmentTree { using F = function<Monoid(Monoid, Monoid)>; private: int n; vector<Monoid> node; Monoid E; F f; public: SegmentTree(vector<Monoid> v, Monoid e, const F func) : f(func), E(e) { int sz = v.size(); n = 1; while(n < sz) { n *= 2; } node.resize(2 * n - 1, E); for(int i = 0; i < sz; i++) { node[i + n - 1] = v[i]; } for(int i = n - 2; i >= 0; i--) { node[i] = f(node[2 * i + 1], node[2 * i + 2]); } } void update(int i, Monoid val) { i += (n - 1); node[i] = val; while(i > 0) { i = (i - 1) / 2; node[i] = f(node[2 * i + 1], node[2 * i + 2]); } } Monoid query(int a, int b, int i = 0, int l = 0, int r = -1) { if(r < 0) { r = n; } if(r <= a || b <= l) { return E; } if(a <= l && r <= b) { return node[i]; } Monoid vl = query(a, b, 2 * i + 1, l, (l + r) / 2); Monoid vr = query(a, b, 2 * i + 2, (l + r) / 2, r); return f(vl, vr); } Monoid operator[](const int &i) const { return node[i + n - 1]; } }; int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<ll> a(n); for(auto &it : a) { cin >> it; } SegmentTree<ll> segmin(a, LLINF, [](ll x, ll y) { return min(x, y); }); ll ans = LLINF; // min max minを探す for(int i = 0; i < n; i++) { ll l = segmin.query(0, i); ll r = segmin.query(i + 1, n); if(l < a[i] && r < a[i]) { chmin(ans, l + a[i] + r); } } // 大小大 vector<ll> memo = a; // 今見てる要素より左にあって、今見てる要素よりも大きいa[i]の集合 set<ll> se; for(int i = 0; i < n; i++) { while(!se.empty()) { if(*se.begin() >= a[i]) { break; } else { se.erase(se.begin()); } } if(se.empty()) { memo[i] += LLINF; } else { memo[i] += *se.begin(); } se.insert(a[i]); } se.clear(); for(int i = n - 1; i >= 0; i--) { while(!se.empty()) { if(*se.begin() > a[i]) { break; } else { se.erase(se.begin()); } } if(se.empty()) { memo[i] += LLINF; } else { memo[i] += *se.begin(); } se.insert(a[i]); } chmin(ans, *min_element(ALL(memo))); cout << (ans >= LLINF ? -1 : ans) << endl; }