結果

問題 No.1435 Mmm......
ユーザー SSRSSSRS
提出日時 2021-03-19 22:22:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 1,757 ms
コンパイル使用メモリ 171,480 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-11-18 23:06:57
合計ジャッジ時間 4,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<int> a(N);
  for (int i = 0; i < N; i++){
    cin >> a[i];
  }
  multiset<int> st;
  st.insert(a[0]);
  int r = 1;
  long long ans = 0;
  for (int l = 0; l < N - 1; l++){
    while (r < N){
      st.insert(a[r]);
      int m1 = *st.begin();
      int m2 = *next(st.begin());
      int M = *prev(st.end());
      if (M > m1 + m2){
        st.erase(st.find(a[r]));
        break;
      } else {
        r++;
      }
    }
    ans += r - l - 1;
    st.erase(st.find(a[l]));
  }
  cout << ans << endl;
}
0