結果

問題 No.1095 Smallest Kadomatsu Subsequence
ユーザー chocono2230chocono2230
提出日時 2020-06-26 22:28:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,384 bytes
コンパイル時間 1,572 ms
コンパイル使用メモリ 176,324 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-04 22:13:09
合計ジャッジ時間 3,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,944 KB
testcase_12 WA -
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 5 ms
6,944 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 5 ms
6,940 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 5 ms
6,940 KB
testcase_23 AC 89 ms
6,940 KB
testcase_24 WA -
testcase_25 AC 91 ms
6,940 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 90 ms
11,008 KB
testcase_29 AC 88 ms
11,008 KB
testcase_30 AC 90 ms
7,936 KB
testcase_31 AC 90 ms
7,936 KB
testcase_32 AC 91 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

int main(){
  int n;
  cin >> n;
  vector<pair<int, int>> p(n);
  rep(i, n){
    int in;
    cin >> in;
    p.at(i) = make_pair(in, i);
  }
  sort(p.begin(), p.end());
  list<pair<int, int>> list;
  list.push_back(p.front()); list.push_back(p.at(1));
  bool mode = list.front().second < list.back().second;
  rep2(i, 2, n){
    int l = min(list.front().second, list.back().second);
    int r = max(list.front().second, list.back().second);
    if(l < p.at(i).second && p.at(i).second < r){
      for(auto q : list){
        if(mode == true){
          if(q.second > p.at(i).second){
            cout << q.first + p.at(i).first + list.front().first << endl;
            return 0;
          }
        }else{
          if(q.second < p.at(i).second){
            cout << q.first + p.at(i).first + list.front().first << endl;
            return 0;
          }
        }
      }
      return 0;
    }
    list.push_back(p.at(i));
  }
  cout << -1 << endl;
  return 0;
}
0