結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー hanbei_dayohanbei_dayo
提出日時 2020-07-16 11:09:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 1,300 bytes
コンパイル時間 1,091 ms
コンパイル使用メモリ 107,832 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-05-03 09:33:39
合計ジャッジ時間 7,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 14 ms
6,944 KB
testcase_14 AC 13 ms
6,944 KB
testcase_15 AC 14 ms
6,940 KB
testcase_16 AC 13 ms
6,940 KB
testcase_17 AC 13 ms
6,944 KB
testcase_18 AC 13 ms
6,944 KB
testcase_19 AC 13 ms
6,940 KB
testcase_20 AC 13 ms
6,940 KB
testcase_21 AC 14 ms
6,944 KB
testcase_22 AC 13 ms
6,944 KB
testcase_23 AC 506 ms
14,208 KB
testcase_24 AC 574 ms
14,208 KB
testcase_25 AC 523 ms
14,208 KB
testcase_26 AC 500 ms
14,208 KB
testcase_27 AC 525 ms
14,208 KB
testcase_28 AC 265 ms
14,208 KB
testcase_29 AC 265 ms
14,336 KB
testcase_30 AC 342 ms
14,208 KB
testcase_31 AC 349 ms
14,208 KB
testcase_32 AC 340 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<string>
#include<utility>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<functional>
#include<math.h>
#include<random>
#include <bitset>
using namespace std;
#define N (1000000000+7)
//#define N 998244353
#define INF 1e16
typedef long long ll;
typedef pair<int,int> P;
typedef pair<int,P> Q;

const int inf = (int)1e9; 



int main(void){
    int n;
    cin>>n;
    vector<ll>a(n);
    for(int i=0;i<n;i++)cin>>a[i];
    reverse(a.begin(),a.end());
    set<ll>s1,s2;
    s1.insert(a[0]);
    for(int i=1;i<n;i++)s2.insert(a[i]);
    ll ans = (ll)INF;
    for(int i=1;i<n-1;i++){
        s2.erase(a[i]);
        auto itr1 = s1.upper_bound(a[i]);
        auto itr2 = s2.upper_bound(a[i]);
        if(itr1!=s1.end()&&itr2!=s2.end()){
            ans = min(ans,a[i]+*(itr1)+*(itr2));
        }
        itr1 = s1.lower_bound(a[i]);
        itr2 = s2.lower_bound(a[i]);
        if(itr1==s1.begin()){
            s1.insert(a[i]);
            continue;
        }
        if(itr2==s2.begin()){
            s1.insert(a[i]);
            continue;
        }
        ans = min(ans,a[i]+*(s1.begin())+*(s2.begin()));
        s1.insert(a[i]);
    }
    if(ans == (ll)INF)cout<<-1<<endl;
    else cout<<ans<<endl;
    return 0;
}
0