結果

問題 No.1435 Mmm......
ユーザー hir355hir355
提出日時 2021-03-19 22:34:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,263 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 208,696 KB
実行使用メモリ 10,232 KB
最終ジャッジ日時 2024-04-29 17:44:25
合計ジャッジ時間 11,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 280 ms
9,716 KB
testcase_07 AC 346 ms
9,952 KB
testcase_08 AC 414 ms
10,052 KB
testcase_09 AC 377 ms
10,132 KB
testcase_10 AC 320 ms
9,908 KB
testcase_11 AC 313 ms
9,896 KB
testcase_12 AC 290 ms
9,864 KB
testcase_13 AC 283 ms
9,848 KB
testcase_14 AC 204 ms
6,768 KB
testcase_15 AC 432 ms
10,084 KB
testcase_16 AC 349 ms
9,948 KB
testcase_17 AC 232 ms
6,696 KB
testcase_18 AC 435 ms
10,096 KB
testcase_19 AC 309 ms
10,020 KB
testcase_20 AC 393 ms
10,152 KB
testcase_21 AC 634 ms
9,984 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

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<int, int> 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};}

int op2(int x, int y){return max(x, y);}
int e2(){return 0;}

int main(){
    cin.tie(0);
    ios_base::sync_with_stdio(false);
    int n;
    cin >> n;
    vi a(n);
    rep(i, n) cin >> a[i];
    segtree<P, op1, e1> seg1(n);
    segtree<int, op2, e2> seg2(a);
    ll ans = 0;
    rep(i, n){
        seg1.set(i, {a[i], INF});
    }
    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