結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー karinohitokarinohito
提出日時 2024-09-11 16:46:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,043 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 211,452 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-09-11 16:46:11
合計ジャッジ時間 8,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,944 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,944 KB
testcase_12 WA -
testcase_13 AC 13 ms
6,940 KB
testcase_14 AC 13 ms
6,944 KB
testcase_15 WA -
testcase_16 AC 12 ms
6,944 KB
testcase_17 WA -
testcase_18 AC 13 ms
6,944 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 12 ms
6,940 KB
testcase_23 AC 502 ms
13,440 KB
testcase_24 AC 507 ms
13,440 KB
testcase_25 AC 494 ms
13,312 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 249 ms
13,440 KB
testcase_29 AC 246 ms
13,312 KB
testcase_30 AC 346 ms
13,440 KB
testcase_31 AC 372 ms
13,440 KB
testcase_32 AC 340 ms
13,440 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=*(prev(R.end()));
        auto l=*(prev(L.end()));
        if(r<=A[i]||l<=A[i])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