結果
| 問題 | No.1435 Mmm...... | 
| コンテスト | |
| ユーザー |  hir355 | 
| 提出日時 | 2021-03-19 22:36:58 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 874 ms / 2,000 ms | 
| コード長 | 2,259 bytes | 
| コンパイル時間 | 3,376 ms | 
| コンパイル使用メモリ | 202,656 KB | 
| 最終ジャッジ日時 | 2025-01-19 18:54:54 | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 24 | 
ソースコード
#include <atcoder/segtree>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
const long long INF_LL = 2000000000000000000LL;
const int INF = 2000000000;
const long long MOD = 1000000007;
#define ll long long
#define all(x) x.begin(), x.end()
#define REP(i, a, b) for(int i = a; i < b; i++)
#define rep(i, n) REP(i, 0, n)
// typedef float double;
// typedef priority_queue prique;
typedef pair<ll, ll> P;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<P> vp;
typedef vector<ll> vl;
typedef vector<vi> matrix;
int dx[4] = {0, -1, 0, 1};
int dy[4] = {1, 0, -1, 0};
int sign[2] = {1, -1};
template <class T> bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T> bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return 1;
    }
    return 0;
}
ll modpow(ll a, ll b, ll m) {
    if(b == 0)
        return 1;
    ll t = modpow(a, b / 2, m);
    if(b & 1) {
        return (t * t % m) * a % m;
    } else {
        return t * t % m;
    }
}
struct edge {
    int to;
    ll cost;
    edge(int t, ll c) { to = t, cost = c; }
};
typedef vector<vector<edge>> graph;
// using mint = modint998244353;
P op1(P x, P y){
    if(x.first < y.first){
        if(x.second < y.first){
            return {x.first, x.second};
        }else{
            return {x.first, y.first};
        }
    }else{
        if(y.second < x.first){
            return {y.first, y.second};
        }else{
            return {y.first, x.first};
        }
    }
}
P e1(){return {INF, INF};}
ll op2(ll x, ll y){return max(x, y);}
ll e2(){return 0;}
int main(){
    cin.tie(0);
    ios_base::sync_with_stdio(false);
    int n;
    cin >> n;
    vl a(n);
    rep(i, n) cin >> a[i];
    segtree<P, op1, e1> seg1(n);
    segtree<ll, op2, e2> seg2(a);
    ll ans = 0;
    rep(i, n){
        seg1.set(i, {a[i], INF_LL});
    }
    rep(i, n){
        int l = i, r = n + 1;
        while(r - l > 1){
            int m = (l + r) / 2;
            P tmp = seg1.prod(i, m);
            if(tmp.first + tmp.second >= seg2.prod(i, m)){
                l = m;
            }else{
                r = m;
            }
        }
        ans += l - i - 1;
    }
    cout << ans << endl;
    return 0;
}
            
            
            
        