結果

問題 No.1435 Mmm......
ユーザー hir355hir355
提出日時 2021-03-19 22:36:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 658 ms / 2,000 ms
コード長 2,259 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 209,424 KB
実行使用メモリ 17,276 KB
最終ジャッジ日時 2024-04-29 17:48:34
合計ジャッジ時間 12,167 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 288 ms
16,512 KB
testcase_07 AC 367 ms
16,740 KB
testcase_08 AC 434 ms
17,068 KB
testcase_09 AC 393 ms
16,828 KB
testcase_10 AC 342 ms
16,648 KB
testcase_11 AC 332 ms
16,756 KB
testcase_12 AC 309 ms
16,544 KB
testcase_13 AC 301 ms
16,524 KB
testcase_14 AC 210 ms
10,116 KB
testcase_15 AC 453 ms
16,996 KB
testcase_16 AC 373 ms
16,728 KB
testcase_17 AC 243 ms
10,224 KB
testcase_18 AC 463 ms
17,148 KB
testcase_19 AC 331 ms
16,604 KB
testcase_20 AC 412 ms
17,008 KB
testcase_21 AC 658 ms
17,024 KB
testcase_22 AC 640 ms
17,020 KB
testcase_23 AC 475 ms
17,024 KB
testcase_24 AC 476 ms
17,152 KB
testcase_25 AC 473 ms
17,152 KB
testcase_26 AC 474 ms
17,276 KB
testcase_27 AC 474 ms
17,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0