結果

問題 No.1300 Sum of Inversions
ユーザー 37zigen37zigen
提出日時 2020-12-18 23:40:42
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 1,233 bytes
コンパイル時間 1,220 ms
コンパイル使用メモリ 85,604 KB
最終ジャッジ日時 2025-01-17 03:09:30
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 140 ms
8,960 KB
testcase_04 AC 133 ms
8,960 KB
testcase_05 AC 113 ms
7,936 KB
testcase_06 AC 155 ms
9,856 KB
testcase_07 AC 147 ms
9,472 KB
testcase_08 AC 165 ms
10,112 KB
testcase_09 AC 162 ms
9,984 KB
testcase_10 AC 88 ms
7,168 KB
testcase_11 AC 87 ms
7,040 KB
testcase_12 AC 134 ms
8,832 KB
testcase_13 AC 132 ms
8,704 KB
testcase_14 AC 176 ms
10,624 KB
testcase_15 AC 162 ms
10,112 KB
testcase_16 AC 139 ms
9,088 KB
testcase_17 AC 87 ms
7,040 KB
testcase_18 AC 100 ms
7,552 KB
testcase_19 AC 117 ms
8,320 KB
testcase_20 AC 121 ms
8,320 KB
testcase_21 AC 120 ms
8,320 KB
testcase_22 AC 116 ms
7,808 KB
testcase_23 AC 156 ms
9,728 KB
testcase_24 AC 117 ms
7,936 KB
testcase_25 AC 101 ms
7,424 KB
testcase_26 AC 93 ms
7,296 KB
testcase_27 AC 107 ms
7,808 KB
testcase_28 AC 174 ms
10,368 KB
testcase_29 AC 119 ms
8,320 KB
testcase_30 AC 162 ms
9,984 KB
testcase_31 AC 109 ms
7,936 KB
testcase_32 AC 114 ms
8,064 KB
testcase_33 AC 90 ms
10,880 KB
testcase_34 AC 151 ms
10,880 KB
testcase_35 AC 120 ms
10,752 KB
testcase_36 AC 143 ms
10,880 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