結果

問題 No.1300 Sum of Inversions
ユーザー trineutrontrineutron
提出日時 2020-11-27 22:13:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,873 bytes
コンパイル時間 2,604 ms
コンパイル使用メモリ 212,268 KB
実行使用メモリ 15,104 KB
最終ジャッジ日時 2024-07-26 13:10:39
合計ジャッジ時間 47,664 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 1,306 ms
12,288 KB
testcase_04 AC 1,252 ms
12,032 KB
testcase_05 AC 1,029 ms
10,496 KB
testcase_06 AC 1,484 ms
13,440 KB
testcase_07 AC 1,379 ms
13,056 KB
testcase_08 AC 1,523 ms
13,952 KB
testcase_09 AC 1,548 ms
13,824 KB
testcase_10 AC 886 ms
9,344 KB
testcase_11 AC 880 ms
9,472 KB
testcase_12 AC 1,282 ms
12,160 KB
testcase_13 AC 1,246 ms
12,032 KB
testcase_14 AC 1,649 ms
14,848 KB
testcase_15 AC 1,534 ms
13,824 KB
testcase_16 AC 1,345 ms
12,672 KB
testcase_17 AC 844 ms
9,088 KB
testcase_18 AC 968 ms
10,112 KB
testcase_19 AC 1,113 ms
11,136 KB
testcase_20 AC 1,133 ms
11,392 KB
testcase_21 AC 1,152 ms
11,264 KB
testcase_22 AC 1,037 ms
10,496 KB
testcase_23 AC 1,474 ms
13,312 KB
testcase_24 AC 1,092 ms
10,752 KB
testcase_25 AC 940 ms
9,728 KB
testcase_26 AC 915 ms
9,728 KB
testcase_27 AC 1,020 ms
10,496 KB
testcase_28 AC 1,575 ms
14,080 KB
testcase_29 AC 1,146 ms
11,136 KB
testcase_30 AC 1,513 ms
13,952 KB
testcase_31 AC 1,067 ms
10,624 KB
testcase_32 AC 1,090 ms
11,008 KB
testcase_33 AC 1,604 ms
15,104 KB
testcase_34 AC 1,675 ms
15,104 KB
testcase_35 AC 1,661 ms
14,976 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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) * t1.at(p) % mod;
        ans += s0.at(i) * t1.at(p) % mod;
        ans += t0.at(i) * s1.at(p) % mod;
        ans %= mod;
        cerr << a.at(i) << " " << t0.at(i) << " " << t1.at(p) << endl;
    }
    cout << (ans + mod) % mod << endl;
}
0