結果

問題 No.1300 Sum of Inversions
ユーザー trineutrontrineutron
提出日時 2020-11-27 22:16:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,808 bytes
コンパイル時間 2,510 ms
コンパイル使用メモリ 213,216 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-07-26 13:13:44
合計ジャッジ時間 8,020 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 131 ms
12,288 KB
testcase_04 AC 127 ms
12,032 KB
testcase_05 AC 102 ms
10,496 KB
testcase_06 AC 146 ms
13,312 KB
testcase_07 AC 139 ms
12,928 KB
testcase_08 AC 156 ms
13,952 KB
testcase_09 AC 154 ms
13,824 KB
testcase_10 AC 86 ms
9,344 KB
testcase_11 AC 86 ms
9,344 KB
testcase_12 AC 126 ms
12,032 KB
testcase_13 AC 122 ms
11,904 KB
testcase_14 AC 168 ms
14,848 KB
testcase_15 AC 152 ms
13,824 KB
testcase_16 AC 134 ms
12,544 KB
testcase_17 AC 82 ms
9,088 KB
testcase_18 AC 97 ms
9,984 KB
testcase_19 AC 114 ms
11,008 KB
testcase_20 AC 121 ms
11,392 KB
testcase_21 AC 115 ms
11,264 KB
testcase_22 AC 103 ms
10,496 KB
testcase_23 AC 150 ms
13,440 KB
testcase_24 AC 104 ms
10,752 KB
testcase_25 AC 91 ms
9,728 KB
testcase_26 AC 91 ms
9,600 KB
testcase_27 AC 98 ms
10,368 KB
testcase_28 AC 156 ms
14,080 KB
testcase_29 AC 112 ms
11,136 KB
testcase_30 AC 158 ms
13,952 KB
testcase_31 AC 104 ms
10,624 KB
testcase_32 AC 114 ms
10,880 KB
testcase_33 AC 89 ms
14,976 KB
testcase_34 AC 138 ms
14,976 KB
testcase_35 AC 110 ms
14,976 KB
testcase_36 AC 135 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    constexpr int64_t mod = 998244353;
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a.at(i);
    }
    reverse(a.begin(), a.end());
    vector<int> b = a;
    sort(b.begin(), b.end());
    b.erase(unique(b.begin(), b.end()), b.end());
    vector<int> c(n);
    for (int i = 0; i < n; i++) {
        c.at(i) = lower_bound(b.begin(), b.end(), a.at(i)) - b.begin();
    }
    vector<int64_t> s(n + 1), t(n + 1);
    vector<int64_t> s0(n), t0(n);
    for (int i = 0; i < n; i++) {
        int x = c.at(i);
        while (x) {
            (s0.at(i) += s.at(x)) %= mod;
            t0.at(i) += t.at(x);
            x -= x & -x;
        }
        x = c.at(i) + 1;
        while (x <= n) {
            (s.at(x) += b.at(c.at(i))) %= mod;
            t.at(x)++;
            x += x & -x;
        }
    }
    for (int i = 0; i <= n; i++) {
        s.at(i) = 0;
        t.at(i) = 0;
    }
    reverse(c.begin(), c.end());
    vector<int64_t> s1(n), t1(n);
    int64_t ssum = 0;
    for (int i = 0; i < n; i++) {
        int x = c.at(i) + 1;
        s1.at(i) = ssum;
        t1.at(i) = i;
        (ssum += b.at(c.at(i))) %= mod;
        while (x) {
            (s1.at(i) -= s.at(x)) %= mod;
            t1.at(i) -= t.at(x);
            x -= x & -x;
        }
        x = c.at(i) + 1;
        while (x <= n) {
            (s.at(x) += b.at(c.at(i))) %= mod;
            t.at(x)++;
            x += x & -x;
        }
    }
    int64_t ans = 0;
    for (int i = 0; i < n; i++) {
        int p = n - 1 - i;
        ans += a.at(i) * t0.at(i) % mod * t1.at(p) % mod;
        ans += s0.at(i) * t1.at(p) % mod;
        ans += t0.at(i) * s1.at(p) % mod;
        ans %= mod;
    }
    cout << (ans + mod) % mod << endl;
}
0