結果

問題 No.1435 Mmm......
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-07-28 13:03:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,040 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 212,088 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-10-06 03:12:26
合計ジャッジ時間 26,980 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 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 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 862 ms
11,008 KB
testcase_07 AC 1,076 ms
11,264 KB
testcase_08 AC 1,292 ms
11,604 KB
testcase_09 AC 1,165 ms
11,384 KB
testcase_10 AC 1,027 ms
11,136 KB
testcase_11 AC 975 ms
11,072 KB
testcase_12 AC 915 ms
11,008 KB
testcase_13 AC 887 ms
10,980 KB
testcase_14 AC 624 ms
7,424 KB
testcase_15 AC 1,359 ms
11,636 KB
testcase_16 AC 1,091 ms
11,264 KB
testcase_17 AC 736 ms
7,680 KB
testcase_18 AC 1,364 ms
11,776 KB
testcase_19 AC 948 ms
11,120 KB
testcase_20 AC 1,218 ms
11,520 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1,407 ms
11,744 KB
testcase_24 AC 1,441 ms
11,728 KB
testcase_25 AC 1,415 ms
11,732 KB
testcase_26 AC 1,450 ms
11,660 KB
testcase_27 AC 1,410 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>

using namespace std;
using namespace atcoder;
using ll = long long;

const int INF = 1e9+1;

struct S{
    int m1;
    int m2;
};

S op1(S a, S b){
    vector<int> v(4);
    v[0] = a.m1, v[1] = a.m2, v[2] = b.m1, v[3] = b.m2;
    sort(v.begin(), v.end());
    return {v[0], v[1]};
}

S e1(){
    return {INF, INF};
}

int op2(int a, int b){
    return max(a, b);
}

int e2(){
    return -INF;
}
 
int main(){
 
    int N, x, mx;
    cin >> N;
    S mi;
    vector<int> a(N);
    vector<S> b(N);
    ll ans=0;

    for (int i=0; i<N; i++){
        cin >> x;
        a[i] = x;
        b[i] = {x, INF};
    }
    segtree<int, op2, e2> tmx(a);
    segtree<S, op1, e1> tmi(b);

    for (int i=0; i<N; i++){
        int l=i, r=N, c;
        while(r-l>1){
            c = (l+r)/2;
            mi = tmi.prod(i, c+1);
            mx = tmx.prod(i, c+1);
            if (mx <= mi.m1 + mi.m2) l=c;
            else r=c;
        }
        ans += l-i;
    }

    cout << ans << endl;

    return 0;
}
0