結果

問題 No.1300 Sum of Inversions
ユーザー ooaiuooaiu
提出日時 2024-12-16 13:57:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,205 bytes
コンパイル時間 3,623 ms
コンパイル使用メモリ 260,532 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-12-16 13:57:14
合計ジャッジ時間 10,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 105 ms
8,064 KB
testcase_04 AC 103 ms
7,936 KB
testcase_05 AC 82 ms
7,040 KB
testcase_06 AC 119 ms
8,576 KB
testcase_07 AC 136 ms
8,448 KB
testcase_08 AC 128 ms
8,960 KB
testcase_09 AC 127 ms
8,960 KB
testcase_10 AC 68 ms
6,820 KB
testcase_11 AC 68 ms
6,816 KB
testcase_12 AC 106 ms
7,936 KB
testcase_13 AC 104 ms
7,808 KB
testcase_14 AC 137 ms
9,344 KB
testcase_15 AC 126 ms
8,832 KB
testcase_16 AC 109 ms
8,192 KB
testcase_17 AC 78 ms
6,820 KB
testcase_18 AC 77 ms
6,820 KB
testcase_19 AC 92 ms
7,424 KB
testcase_20 AC 93 ms
7,552 KB
testcase_21 AC 91 ms
7,552 KB
testcase_22 AC 84 ms
7,168 KB
testcase_23 AC 117 ms
8,448 KB
testcase_24 AC 85 ms
7,296 KB
testcase_25 AC 73 ms
6,816 KB
testcase_26 AC 72 ms
6,820 KB
testcase_27 AC 79 ms
7,040 KB
testcase_28 AC 131 ms
8,960 KB
testcase_29 AC 109 ms
7,296 KB
testcase_30 AC 124 ms
8,704 KB
testcase_31 AC 84 ms
7,168 KB
testcase_32 AC 86 ms
7,296 KB
testcase_33 AC 90 ms
9,472 KB
testcase_34 AC 105 ms
9,344 KB
testcase_35 AC 82 ms
9,344 KB
testcase_36 AC 87 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

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

#include <atcoder/modint>
using mint = atcoder::modint998244353;
#include <atcoder/fenwicktree>
void solve() {
    int N;
    cin >> N;
    vector<int> A(N);
    for (auto& x : A) cin >> x;
    //
    vector<int> B(A.begin(), A.end());
    sort(B.begin(), B.end());
    B.erase(unique(B.begin(), B.end()), B.end());
    for (auto& x : A) x = distance(B.begin(), lower_bound(B.begin(), B.end(), x));
    //
    atcoder::fenwick_tree<mint> L(N), R(N);
    atcoder::fenwick_tree<int64_t> cntL(N), cntR(N);
    for (const auto& x : A) R.add(x, B[x]), cntR.add(x, 1);

    mint ans = 0;
    for (const auto& x : A) {
        R.add(x, -B[x]);
        cntR.add(x, -1);

        ans += R.sum(0, x) * cntL.sum(x + 1, N);
        ans += L.sum(x + 1, N) * cntR.sum(0, x);
        ans += mint(cntL.sum(x + 1, N) * cntR.sum(0, x)) * B[x];

        L.add(x, +B[x]);
        cntL.add(x, 1);
    }
    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