結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー face4face4
提出日時 2020-07-22 16:49:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-06-12 05:09:46
合計ジャッジ時間 5,658 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 10 ms
6,944 KB
testcase_14 AC 11 ms
6,944 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 11 ms
6,940 KB
testcase_20 AC 11 ms
6,940 KB
testcase_21 AC 11 ms
6,944 KB
testcase_22 AC 11 ms
6,940 KB
testcase_23 AC 376 ms
13,568 KB
testcase_24 AC 352 ms
13,568 KB
testcase_25 AC 365 ms
13,568 KB
testcase_26 AC 360 ms
13,568 KB
testcase_27 AC 348 ms
13,568 KB
testcase_28 AC 217 ms
13,568 KB
testcase_29 AC 215 ms
13,440 KB
testcase_30 AC 285 ms
13,568 KB
testcase_31 AC 278 ms
13,568 KB
testcase_32 AC 281 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
using namespace std;

int main(){
    int n;
    cin >> n;
    int ans = 1<<30;
    set<int> a, b;
    int v[n];
    for(int i = 0; i < n; i++)  cin >> v[i], (i ? b : a).insert(v[i]);
    for(int i = 1; i+1 < n; i++){
        b.erase(v[i]);
        auto x = a.lower_bound(v[i]);
        auto y = b.lower_bound(v[i]);
        if(x != a.end() && y != b.end()){
            ans = min(ans, v[i]+(*x)+(*y));
        }
        if(*a.begin() < v[i] && *b.begin() < v[i]){
            ans = min(ans, v[i]+*a.begin()+*b.begin());
        }
        a.insert(v[i]);
    }
    cout << (ans==1<<30 ? -1 : ans) << endl;
    return 0;
}
0