結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー ooaiuooaiu
提出日時 2024-11-30 16:54:46
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 1,221 bytes
コンパイル時間 2,729 ms
コンパイル使用メモリ 252,360 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-11-30 16:54:58
合計ジャッジ時間 9,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 14 ms
5,248 KB
testcase_14 AC 13 ms
5,248 KB
testcase_15 AC 13 ms
5,248 KB
testcase_16 AC 13 ms
5,248 KB
testcase_17 AC 12 ms
5,248 KB
testcase_18 AC 14 ms
5,248 KB
testcase_19 AC 12 ms
5,248 KB
testcase_20 AC 15 ms
5,248 KB
testcase_21 AC 14 ms
5,248 KB
testcase_22 AC 14 ms
5,248 KB
testcase_23 AC 498 ms
13,440 KB
testcase_24 AC 519 ms
13,440 KB
testcase_25 AC 493 ms
13,568 KB
testcase_26 AC 531 ms
13,440 KB
testcase_27 AC 504 ms
13,440 KB
testcase_28 AC 272 ms
13,440 KB
testcase_29 AC 303 ms
13,440 KB
testcase_30 AC 377 ms
13,440 KB
testcase_31 AC 377 ms
13,440 KB
testcase_32 AC 405 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

void solve() {
    int N;
    cin >> N;
    vector<int> A(N);
    for(int i = 0; i < N; i++) cin >> A[i];
    int ans = 2e9;
    {
        set<int> L, R;
        L.insert(1e9); R.insert(1e9);
        for(int i = 0; i < N; i++) R.insert(A[i]);
        for(int i = 0; i < N; i++) {
            R.erase(A[i]);
            if(*L.begin() < A[i] && *R.begin() < A[i]) {
                ans = min(ans, *L.begin() + A[i] + *R.begin());
            }
            L.insert(A[i]);
        }
    }
    {
        set<int> L, R;
        for(int i = 0; i < N; i++) R.insert(A[i]);
        for(int i = 0; i < N; i++) {
            R.erase(A[i]);
            auto itl = L.lower_bound(A[i]);
            auto itr = R.lower_bound(A[i]);
            if(itl != L.end() && itr != R.end()) {
                ans = min(ans, *itl + A[i] + *itr);
            }
            L.insert(A[i]);
        }
    }
    cout << (ans == (int)2e9 ? -1 : ans) << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0