結果

問題 No.1300 Sum of Inversions
ユーザー 37zigen37zigen
提出日時 2020-12-18 23:40:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 1,233 bytes
コンパイル時間 924 ms
コンパイル使用メモリ 88,048 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-09-21 09:30:39
合計ジャッジ時間 8,542 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 139 ms
9,216 KB
testcase_04 AC 133 ms
9,088 KB
testcase_05 AC 109 ms
8,064 KB
testcase_06 AC 154 ms
9,984 KB
testcase_07 AC 152 ms
9,728 KB
testcase_08 AC 177 ms
10,496 KB
testcase_09 AC 167 ms
10,240 KB
testcase_10 AC 92 ms
7,296 KB
testcase_11 AC 91 ms
7,296 KB
testcase_12 AC 132 ms
9,088 KB
testcase_13 AC 136 ms
8,960 KB
testcase_14 AC 201 ms
11,008 KB
testcase_15 AC 164 ms
10,368 KB
testcase_16 AC 142 ms
9,344 KB
testcase_17 AC 86 ms
7,296 KB
testcase_18 AC 105 ms
7,680 KB
testcase_19 AC 123 ms
8,448 KB
testcase_20 AC 126 ms
8,704 KB
testcase_21 AC 121 ms
8,576 KB
testcase_22 AC 106 ms
8,064 KB
testcase_23 AC 158 ms
9,984 KB
testcase_24 AC 110 ms
8,320 KB
testcase_25 AC 102 ms
7,552 KB
testcase_26 AC 94 ms
7,552 KB
testcase_27 AC 111 ms
8,064 KB
testcase_28 AC 173 ms
10,496 KB
testcase_29 AC 119 ms
8,704 KB
testcase_30 AC 165 ms
10,240 KB
testcase_31 AC 108 ms
8,192 KB
testcase_32 AC 112 ms
8,320 KB
testcase_33 AC 93 ms
11,008 KB
testcase_34 AC 149 ms
11,136 KB
testcase_35 AC 119 ms
11,136 KB
testcase_36 AC 140 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string>
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>

using namespace std;
using ll = long long;

const ll p = 998244353;

struct BIT {
    vector<ll> a;
    BIT(int n) {
        a.resize(n + 1);
    }

    void add(int k, int v) {
        v %= p;
        while (k < a.size()) {
            a[k] += v;
            a[k] %= p;
            k  += k & -k;
        }
    }

    ll sum(int k) {
        ll ret = 0;
        while (k > 0) {
            ret += a[k];
            ret %= p;
            k -= k & -k;
        }
        return ret;
    }
};

int main() {
    int N;
    cin >> N;
    vector<pair<int, int>> ps(N);
    for (int i=0;i<N;++i) {
        ll a;
        cin >> a;
        ps[i] = make_pair(-a, -i);
    }
    sort(ps.begin(), ps.end());
    BIT bit0(N);
    BIT bit1(N);
    BIT bit2(N);
    BIT bit3(N);
    ll ans = 0;
    for (auto e:ps) {
        int id = 1 + -e.second;
        ll cost = -e.first;
        bit0.add(id, 1);
        bit1.add(id, cost);
        bit2.add(id, bit1.sum(id - 1) + bit0.sum(id - 1) * cost % p);
        bit3.add(id, bit0.sum(id - 1));
        ans += bit2.sum(id - 1) + bit3.sum(id - 1) * cost % p;
        ans %= p;
    }
    cout << ans << endl;

}
0