結果

問題 No.2950 Max Min Product
ユーザー hitonanodehitonanode
提出日時 2024-10-26 22:23:28
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 3,000 ms
コード長 1,799 bytes
コンパイル時間 4,769 ms
コンパイル使用メモリ 129,300 KB
実行使用メモリ 17,420 KB
最終ジャッジ日時 2024-10-26 22:23:43
合計ジャッジ時間 11,499 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 140 ms
16,676 KB
testcase_04 AC 154 ms
16,916 KB
testcase_05 AC 144 ms
16,716 KB
testcase_06 AC 203 ms
17,292 KB
testcase_07 AC 203 ms
17,188 KB
testcase_08 AC 202 ms
17,168 KB
testcase_09 AC 100 ms
10,256 KB
testcase_10 AC 177 ms
16,972 KB
testcase_11 AC 156 ms
16,904 KB
testcase_12 AC 202 ms
17,296 KB
testcase_13 AC 202 ms
17,168 KB
testcase_14 AC 203 ms
17,296 KB
testcase_15 AC 202 ms
17,196 KB
testcase_16 AC 150 ms
16,532 KB
testcase_17 AC 166 ms
16,640 KB
testcase_18 AC 215 ms
17,252 KB
testcase_19 AC 213 ms
17,420 KB
testcase_20 AC 213 ms
17,292 KB
testcase_21 AC 127 ms
10,392 KB
testcase_22 AC 171 ms
16,660 KB
testcase_23 AC 112 ms
10,280 KB
testcase_24 AC 222 ms
17,284 KB
testcase_25 AC 220 ms
17,292 KB
testcase_26 AC 221 ms
17,272 KB
testcase_27 AC 185 ms
15,212 KB
testcase_28 AC 268 ms
16,960 KB
testcase_29 AC 195 ms
15,932 KB
testcase_30 AC 273 ms
15,676 KB
testcase_31 AC 260 ms
16,656 KB
testcase_32 AC 275 ms
15,712 KB
testcase_33 AC 187 ms
14,584 KB
testcase_34 AC 122 ms
9,344 KB
testcase_35 AC 181 ms
14,572 KB
testcase_36 AC 253 ms
15,036 KB
testcase_37 AC 251 ms
15,052 KB
testcase_38 AC 251 ms
15,048 KB
testcase_39 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <vector>
using namespace std;

#include <atcoder/lazysegtree>
#include <atcoder/modint>
using mint = atcoder::modint998244353;
// range set range sum
// constexpr int md = 998244353;

using S = pair<mint, int>;  // (sum, size)
using F = int;
S op(S a, S b) { return {(a.first + b.first), a.second + b.second}; }
S e() { return {0, 0}; }
S mapping(F f, S x) { return f == 0 ? x : S(x.second * mint(f), x.second); }
F composition(F f, F g) { return f == 0 ? g : f; }
F id() { return 0; }
using LST = atcoder::lazy_segtree<S, op, e, F, mapping, composition, id>;


int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);

    vector<pair<int, int>> maxi, mini;
    maxi.emplace_back(1 << 30, -1);
    mini.emplace_back(0, -1);

    mint ret = 0;

    int N;
    cin >> N;

    vector<S> init(N, {0, 1});
    LST mintree(init), maxtree(init);

    mint ans = 0;
    for (int i = 0; i < N; ++i) {
        int a;
        cin >> a;

        ret += (mint)a * a;

        {
            int r = i;
            while (maxi.back().first <= a) {
                int l = maxi.back().second;
                ret += (mint)(a - maxi.back().first) * mintree.prod(l, r).first;
                r = l;
                maxi.pop_back();
            }
            maxi.emplace_back(a, r);
            maxtree.apply(r, i + 1, a);
        }

        {
            int r = i;
            while (mini.back().first >= a) {
                const int l = mini.back().second;
                ret += (mint)(a - mini.back().first) * maxtree.prod(l, r).first;
                r = l;
                mini.pop_back();
            }
            mini.emplace_back(a, r);
            mintree.apply(r, i + 1, a);
        }

        ans += ret;
    }

    cout << ans.val() << '\n';
}
0