結果

問題 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,471 ms
コンパイル使用メモリ 208,420 KB
実行使用メモリ 10,256 KB
最終ジャッジ日時 2024-11-18 23:29:22
合計ジャッジ時間 12,019 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 283 ms
9,968 KB
testcase_07 AC 349 ms
10,080 KB
testcase_08 AC 415 ms
10,184 KB
testcase_09 AC 377 ms
10,256 KB
testcase_10 AC 317 ms
9,912 KB
testcase_11 AC 316 ms
9,896 KB
testcase_12 AC 291 ms
9,988 KB
testcase_13 AC 282 ms
9,844 KB
testcase_14 AC 205 ms
6,772 KB
testcase_15 AC 430 ms
10,216 KB
testcase_16 AC 349 ms
10,032 KB
testcase_17 AC 233 ms
6,684 KB
testcase_18 AC 439 ms
10,224 KB
testcase_19 AC 310 ms
10,012 KB
testcase_20 AC 396 ms
10,148 KB
testcase_21 AC 628 ms
10,232 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