結果

問題 No.1300 Sum of Inversions
ユーザー KudeKude
提出日時 2020-11-27 23:15:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,799 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 216,444 KB
実行使用メモリ 16,532 KB
最終ジャッジ日時 2024-07-26 19:32:56
合計ジャッジ時間 14,277 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 328 ms
13,312 KB
testcase_04 AC 310 ms
13,208 KB
testcase_05 AC 244 ms
11,416 KB
testcase_06 AC 388 ms
14,624 KB
testcase_07 AC 361 ms
14,120 KB
testcase_08 AC 443 ms
15,232 KB
testcase_09 AC 431 ms
15,052 KB
testcase_10 AC 202 ms
9,984 KB
testcase_11 AC 218 ms
10,112 KB
testcase_12 AC 369 ms
13,184 KB
testcase_13 AC 346 ms
13,056 KB
testcase_14 AC 504 ms
16,372 KB
testcase_15 AC 428 ms
15,104 KB
testcase_16 AC 362 ms
13,616 KB
testcase_17 AC 179 ms
9,800 KB
testcase_18 AC 218 ms
10,784 KB
testcase_19 AC 267 ms
12,048 KB
testcase_20 AC 293 ms
12,308 KB
testcase_21 AC 296 ms
12,288 KB
testcase_22 AC 245 ms
11,404 KB
testcase_23 AC 398 ms
14,600 KB
testcase_24 AC 262 ms
11,648 KB
testcase_25 AC 212 ms
10,496 KB
testcase_26 AC 201 ms
10,368 KB
testcase_27 AC 234 ms
11,136 KB
testcase_28 AC 461 ms
15,488 KB
testcase_29 AC 284 ms
12,160 KB
testcase_30 AC 423 ms
15,296 KB
testcase_31 AC 245 ms
11,592 KB
testcase_32 AC 261 ms
11,776 KB
testcase_33 AC 23 ms
6,944 KB
testcase_34 AC 36 ms
6,944 KB
testcase_35 AC 227 ms
16,404 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/fenwicktree>
#include<atcoder/modint>
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define rrep(i,n) for(int i = (n)-1; i >= 0; --i)
#define chmax(a, b) a = max(a, b)
#define chmin(a, b) a = min(a, b)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

using mint = modint998244353;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    VI a(n);
    rep(i, n) cin >> a[i];
    map<int,int> mp;
    rep(i, n) mp[a[i]] = 0;
    {
        int idx = 0;
        for(auto& [k, v]: mp) v = idx++;
    }
    int sz = mp.size();
    mint ans = 0;
    {
        fenwick_tree<ll> ft1(sz), ft2(sz);
        rep(i, n) {
            int idx = mp[a[i]];
            ll cnt1 = ft1.sum(idx + 1, sz);
            ll cnt2 = ft2.sum(idx + 1, sz);
            ans += cnt2 * a[i];
            ft2.add(idx, cnt1);
            ft1.add(idx, 1);
        }
    }
    {
        fenwick_tree<ll> ft1(sz), ft2(sz);
        rrep(i, n) {
            int idx = mp[a[i]];
            ll cnt1 = ft1.sum(0, idx);
            ll cnt2 = ft2.sum(0, idx);
            ans += mint(cnt2) * a[i];
            ft2.add(idx, cnt1);
            ft1.add(idx, 1);
        }
    }
    {
        fenwick_tree<ll> ft1(sz), ft2(sz);
        rrep(i, n) {
            int idx = mp[a[i]];
            ft2.add(idx, 1);
        }
        rep(i, n) {
            int idx = mp[a[i]];
            ans += mint(a[i]) * ft1.sum(idx + 1, sz) * ft2.sum(0, idx);
            ft1.add(idx, 1);
            ft2.add(idx, -1);
        }
    }
    cout << ans.val() << endl;
}
0