結果

問題 No.1435 Mmm......
ユーザー ooaiuooaiu
提出日時 2024-12-11 09:31:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 3,025 ms
コンパイル使用メモリ 253,612 KB
実行使用メモリ 26,712 KB
最終ジャッジ日時 2024-12-11 09:31:26
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 42 ms
24,224 KB
testcase_07 AC 51 ms
25,300 KB
testcase_08 AC 58 ms
26,264 KB
testcase_09 AC 54 ms
25,612 KB
testcase_10 AC 48 ms
24,948 KB
testcase_11 AC 48 ms
24,800 KB
testcase_12 AC 45 ms
24,328 KB
testcase_13 AC 46 ms
24,348 KB
testcase_14 AC 34 ms
15,000 KB
testcase_15 AC 60 ms
26,568 KB
testcase_16 AC 52 ms
25,380 KB
testcase_17 AC 36 ms
15,660 KB
testcase_18 AC 60 ms
26,564 KB
testcase_19 AC 47 ms
24,752 KB
testcase_20 AC 55 ms
26,036 KB
testcase_21 AC 100 ms
26,592 KB
testcase_22 AC 112 ms
26,712 KB
testcase_23 AC 67 ms
26,596 KB
testcase_24 AC 68 ms
26,668 KB
testcase_25 AC 69 ms
26,604 KB
testcase_26 AC 70 ms
26,632 KB
testcase_27 AC 70 ms
26,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/segtree>
using dat = array<int64_t, 4>;
const int64_t inf = (1 << 30) - 1;
dat e() { return dat{inf, inf, inf * 2, 0}; }
dat op(dat a, dat b) {
    if (a == e()) return b;
    if (b == e()) return a;
    array<int64_t, 4> c{a[0], a[1], b[0], b[1]};
    sort(c.begin(), c.end());
    return dat{c[0], c[1], c[0] + c[1], max(a[3], b[3])};
}

void solve() {
    int N;
    cin >> N;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    vector<dat> init(N, e());
    for (int i = 0; i < N; i++) {
        init[i][0] = A[i];
        init[i][2] = A[i] + inf;
        init[i][3] = A[i];
    }
    atcoder::segtree<dat, op, e> seg(init);
    int64_t ans = 0;
    for (int i = 0; i < N; i++) {
        const auto f = [&](dat x) -> bool {
            return x[3] <= x[2];
        };
        int j = seg.min_left(i + 1, f);
        ans += i - j;
    }
    cout << ans << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0