結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー kappybarkappybar
提出日時 2020-06-26 22:02:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,332 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 174,476 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-07-04 21:10:49
合計ジャッジ時間 5,350 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 10 ms
5,376 KB
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 10 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 256 ms
30,080 KB
testcase_24 AC 245 ms
29,952 KB
testcase_25 AC 245 ms
29,952 KB
testcase_26 AC 253 ms
29,952 KB
testcase_27 AC 301 ms
30,080 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 224 ms
29,824 KB
testcase_31 AC 222 ms
30,080 KB
testcase_32 AC 228 ms
29,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll 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;
    scanf("%d",&n);
    vector<ll> a(n);
    rep(i,n) scanf("%d",&a[i]);
    vector<ll> minl(n),minr(n);
    ll mn = INF;
    rep(i,n){
        minl[i] = mn;
        mn = min(mn,a[i]);
    }
    mn = INF;
    for(ll i=n-1;i>=0;i--){
        minr[i] = mn;
        mn = min(mn,a[i]);
    }
    ll ans = INF;
    rep(i,n){
        if(a[i] > minl[i] && a[i] > minr[i]){
            ans = min(ans,a[i] + minr[i] + minl[i]);
        }
    }
    vector<ll> maxr(n,-1),maxl(n,-1);
    set<ll> stl;
    rep(i,n){
        auto it = stl.upper_bound(a[i]);
        if(it!=stl.end()) maxl[i] = (*it);
        stl.insert(a[i]);
    }
    set<ll> str;
    for(ll i=n-1;i>=0;i--){
        auto it = str.upper_bound(a[i]);
        if(it!=str.end()) maxr[i] = (*it);
        str.insert(a[i]);
    }
    rep(i,n){
        if(a[i] < maxl[i] && a[i] < maxr[i]){
            ans = min(ans,a[i] + maxr[i] + maxl[i]);
        }
    }

    if(ans==LINF) cout << -1 << endl;
    else cout << ans << endl;
    return 0;
}
0