結果

問題 No.1733 Sum of Sorted Subarrays
ユーザー daddydaddy
提出日時 2022-12-09 03:12:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 533 ms / 3,000 ms
コード長 1,552 bytes
コンパイル時間 1,277 ms
コンパイル使用メモリ 95,892 KB
実行使用メモリ 15,752 KB
最終ジャッジ日時 2024-10-14 18:32:31
合計ジャッジ時間 11,248 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 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 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 279 ms
10,220 KB
testcase_09 AC 436 ms
14,072 KB
testcase_10 AC 256 ms
9,504 KB
testcase_11 AC 319 ms
10,756 KB
testcase_12 AC 350 ms
12,560 KB
testcase_13 AC 344 ms
12,560 KB
testcase_14 AC 512 ms
15,368 KB
testcase_15 AC 471 ms
14,552 KB
testcase_16 AC 258 ms
9,636 KB
testcase_17 AC 521 ms
15,388 KB
testcase_18 AC 401 ms
13,432 KB
testcase_19 AC 429 ms
13,852 KB
testcase_20 AC 381 ms
13,188 KB
testcase_21 AC 466 ms
14,500 KB
testcase_22 AC 300 ms
10,372 KB
testcase_23 AC 530 ms
15,628 KB
testcase_24 AC 533 ms
15,628 KB
testcase_25 AC 529 ms
15,596 KB
testcase_26 AC 430 ms
15,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <atcoder/lazysegtree>
#include <atcoder/modint>
#include <functional>
#include <iostream>
#include <utility>
#include <vector>

using namespace std;

using mint = atcoder::modint998244353;

mint op(mint a, mint b) {
    return a + b;
}

mint e() {
    return mint(0);
}

mint mapping(mint f, mint x) {
    return f * x;
}

mint composition(mint f, mint g) {
    return f * g;
}

mint id() {
    return mint(1);
}

vector<size_t> sorted_idx(const vector<size_t> A, bool rev) {
    auto n = A.size();
    vector<pair<size_t, long long>> tmp(n);
    for (size_t i = 0; i < n; i++) tmp[i] = {A[i], rev ? -i : i};
    stable_sort(begin(tmp), end(tmp));
    vector<size_t> ret(n);
    for (size_t i = 0; i < n; i++) ret[i] = abs(tmp[i].second);
    return ret;
}

vector<mint> cumulative_sum(const vector<size_t> &A, bool rev = false) {
    auto n = A.size();
    atcoder::lazy_segtree<mint, op, e, mint, mapping, composition, id> lst(
        vector<mint>(n, 1));
    vector<mint> ret(n);
    auto &&tmp = sorted_idx(A, rev);
    for (auto &i : tmp) {
        ret[i] = lst.prod(0, i + 1) / lst.get(i);
        lst.apply(0, i + 1, mint(2));
    }
    return ret;
}

int main() {
    size_t n;
    cin >> n;
    vector<size_t> A(n);
    for (size_t i = 0; i < n; i++) cin >> A[i];
    auto &&x = cumulative_sum(A);
    reverse(begin(A), end(A));
    auto &&y = cumulative_sum(A, true);
    reverse(begin(x), end(x));
    mint ans;
    for (size_t i = 0; i < n; i++) { ans += x[i] * y[i] * A[i]; }
    cout << ans.val() << endl;
}
0