結果

問題 No.2950 Max Min Product
ユーザー ooaiuooaiu
提出日時 2024-10-26 00:20:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 284 ms / 3,000 ms
コード長 2,049 bytes
コンパイル時間 3,508 ms
コンパイル使用メモリ 261,888 KB
実行使用メモリ 24,344 KB
最終ジャッジ日時 2024-10-26 00:20:55
合計ジャッジ時間 13,124 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 150 ms
21,676 KB
testcase_04 AC 163 ms
23,580 KB
testcase_05 AC 155 ms
24,272 KB
testcase_06 AC 223 ms
23,320 KB
testcase_07 AC 212 ms
23,580 KB
testcase_08 AC 212 ms
23,580 KB
testcase_09 AC 106 ms
13,188 KB
testcase_10 AC 189 ms
24,016 KB
testcase_11 AC 164 ms
24,208 KB
testcase_12 AC 212 ms
23,196 KB
testcase_13 AC 212 ms
24,344 KB
testcase_14 AC 212 ms
23,704 KB
testcase_15 AC 212 ms
21,984 KB
testcase_16 AC 160 ms
20,636 KB
testcase_17 AC 176 ms
21,052 KB
testcase_18 AC 250 ms
22,296 KB
testcase_19 AC 226 ms
22,184 KB
testcase_20 AC 225 ms
22,284 KB
testcase_21 AC 131 ms
13,160 KB
testcase_22 AC 178 ms
21,104 KB
testcase_23 AC 116 ms
12,704 KB
testcase_24 AC 239 ms
22,320 KB
testcase_25 AC 232 ms
22,300 KB
testcase_26 AC 235 ms
22,276 KB
testcase_27 AC 195 ms
18,728 KB
testcase_28 AC 281 ms
21,512 KB
testcase_29 AC 204 ms
19,800 KB
testcase_30 AC 282 ms
18,972 KB
testcase_31 AC 267 ms
20,596 KB
testcase_32 AC 284 ms
19,208 KB
testcase_33 AC 199 ms
17,812 KB
testcase_34 AC 132 ms
11,004 KB
testcase_35 AC 193 ms
17,732 KB
testcase_36 AC 268 ms
18,504 KB
testcase_37 AC 265 ms
18,628 KB
testcase_38 AC 264 ms
18,656 KB
testcase_39 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

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

#include <atcoder/modint>
using mint = atcoder::modint998244353;
#include <atcoder/lazysegtree>
struct S {
    mint sum, sz;
};
S op(S a, S b) {
    return S{a.sum + b.sum, a.sz + b.sz};
}
S e() { return S{0, 0}; }
using F = long;
F id() { return -1; }
S mapping(F f, S x) {
    if(f == id()) return x;
    x.sum = f * x.sz;
    return x;
}
F composition(F f, F g) {
    if(f == id()) return g;
    return f;
}
void solve() {
    int N; cin >> N;
    vector<long> A(N);
    for(int i = 0; i < N; i++) cin >> A[i];
    atcoder::lazy_segtree<S, op, e, F, mapping, composition, id> Max(vector<S>(N, {0, 1})), Min(vector<S>(N, {0, 1}));
    mint ans = 0;
    vector<pair<long, long>> st1; // max
    vector<pair<long, long>> st2; // min
    mint sum = 0;
    for(int i = 0; i < N; i++) {
        {
            int w1 = 1;
            int cur = i;
            while(!st1.empty() && st1.back().first <= A[i]) {
                auto[h, w] = st1.back();

                sum += mint(A[i] - h) * Min.prod(cur - w, cur).sum;
                cur -= w;

                w1 += w;
                st1.pop_back();
            }
            st1.push_back({A[i], w1});
            Max.apply(i + 1 - w1, i + 1, A[i]);
        }
        {
            int w2 = 1;
            int cur = i;
            while(!st2.empty() && st2.back().first >= A[i]) {
                auto[h, w] = st2.back();

                sum -= mint(h - A[i]) * Max.prod(cur - w, cur).sum;
                cur -= w;

                w2 += w;
                st2.pop_back();
            }
            st2.push_back({A[i], w2});
            Min.apply(i + 1 - w2, i + 1, A[i]);
        }
        ans += sum;
        mint t = A[i] * A[i];
        ans += t;
        sum += t;
    }
    cout << ans.val() << endl;
}

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