結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー karinohitokarinohito
提出日時 2024-09-11 16:48:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 764 ms / 2,000 ms
コード長 1,061 bytes
コンパイル時間 3,607 ms
コンパイル使用メモリ 209,772 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-09-11 16:48:36
合計ジャッジ時間 10,752 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
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 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 15 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 15 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 14 ms
5,376 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 15 ms
5,376 KB
testcase_22 AC 15 ms
5,376 KB
testcase_23 AC 738 ms
13,312 KB
testcase_24 AC 721 ms
13,440 KB
testcase_25 AC 741 ms
13,312 KB
testcase_26 AC 703 ms
13,312 KB
testcase_27 AC 764 ms
13,312 KB
testcase_28 AC 289 ms
13,440 KB
testcase_29 AC 293 ms
13,440 KB
testcase_30 AC 488 ms
13,440 KB
testcase_31 AC 454 ms
13,440 KB
testcase_32 AC 442 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;

int cnt(string S){
    int k=0,res=0;
    for(auto s:S){
        if(s=='o')k++;
        else{
            res=max(res,k);
            k=0;
        }
    }
    return max(res,k);
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int N;
    cin>>N;
    vector<int> A(N);
    for(int i=0;i<N;i++)cin>>A[i];
    set<int> L,R;
    for(int i=1;i<N;i++)R.insert(A[i]);
    L.insert(A[0]);
    int an=1e9+10;
    for(int i=1;i<N-1;i++){
        R.erase(A[i]);
        L.insert(A[i]);
        auto r=R.upper_bound(A[i]);
        auto l=L.upper_bound(A[i]);
        if(r==R.end()||l==L.end())continue;
        an=min(an,A[i]+(*r)+(*l));
    }
    L.clear();
    R.clear();
    L.insert(A[0]);
    for(int i=1;i<N;i++)R.insert(A[i]);
    for(int i=1;i<N-1;i++){
        R.erase(A[i]);
        L.insert(A[i]);
        auto r=*(R.begin());
        auto l=*(L.begin());
        if(r>=A[i]||l>=A[i])continue;
        an=min(an,A[i]+r+l);
    }
    cout<<(an<1e9?an:-1)<<endl;

}
0