結果
問題 | No.1095 Smallest Kadomatsu Subsequence |
ユーザー | kappybar |
提出日時 | 2020-06-26 21:37:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,379 bytes |
コンパイル時間 | 1,670 ms |
コンパイル使用メモリ | 175,060 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-04 20:05:34 |
合計ジャッジ時間 | 5,555 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; using ll = long long ; using P = pair<int,int> ; using pll = pair<long long,long long>; constexpr int INF = 1e9; constexpr long long LINF = 1e17; constexpr int MOD = 1000000007; constexpr double PI = 3.14159265358979323846; int main(){ int n; cin >> n; vector<ll> a(n); rep(i,n) cin >> a[i]; vector<ll> minr(n),minl(n); ll mn = INF; rep(i,n){ minr[i] = mn; mn = min(mn,a[i]); } mn = INF; for(int i=n-1;i>=0;i--){ minl[i] = mn; mn = min(mn,a[i]); } ll ans = LINF; for(int i=1;i<n-1;i++){ ll res = a[i]; if(minr[i] < a[i] && minl[i] < a[i]){ ans = min(ans,res + minr[i] + minl[i]); } } vector<ll> bir(n,-1),bil(n,-1); set<ll> st; rep(i,n){ auto it = upper_bound(st.begin(),st.end(),a[i]); if(it!=st.end()) bir[i] = *it; st.insert(a[i]); } set<ll> stt; for(int i=n-1;i>=0;i--){ auto it = upper_bound(st.begin(),st.end(),a[i]); if(it!=st.end()) bil[i] = *it; stt.insert(a[i]); } for(int i=1;i<n-1;i++){ if(bir[i]==-1||bil[i]==-1) continue; ans = min(ans,a[i] + bir[i] + bil[i]); } if(ans==LINF) cout << -1 << endl; else cout << ans << endl; return 0; }