結果

問題 No.1300 Sum of Inversions
ユーザー noya2noya2
提出日時 2020-11-02 23:53:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 748 ms / 2,000 ms
コード長 2,317 bytes
コンパイル時間 2,293 ms
コンパイル使用メモリ 219,100 KB
実行使用メモリ 33,276 KB
最終ジャッジ日時 2024-07-22 08:31:18
合計ジャッジ時間 19,691 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 589 ms
28,252 KB
testcase_04 AC 526 ms
27,848 KB
testcase_05 AC 435 ms
21,120 KB
testcase_06 AC 666 ms
30,464 KB
testcase_07 AC 589 ms
29,504 KB
testcase_08 AC 678 ms
31,360 KB
testcase_09 AC 666 ms
31,360 KB
testcase_10 AC 330 ms
18,816 KB
testcase_11 AC 348 ms
18,944 KB
testcase_12 AC 530 ms
27,872 KB
testcase_13 AC 502 ms
27,516 KB
testcase_14 AC 748 ms
33,004 KB
testcase_15 AC 715 ms
31,144 KB
testcase_16 AC 540 ms
28,636 KB
testcase_17 AC 302 ms
18,304 KB
testcase_18 AC 362 ms
19,840 KB
testcase_19 AC 460 ms
26,192 KB
testcase_20 AC 462 ms
26,476 KB
testcase_21 AC 468 ms
26,400 KB
testcase_22 AC 400 ms
20,992 KB
testcase_23 AC 613 ms
30,216 KB
testcase_24 AC 439 ms
21,376 KB
testcase_25 AC 364 ms
19,456 KB
testcase_26 AC 331 ms
19,328 KB
testcase_27 AC 392 ms
20,608 KB
testcase_28 AC 662 ms
31,848 KB
testcase_29 AC 438 ms
26,244 KB
testcase_30 AC 599 ms
31,304 KB
testcase_31 AC 400 ms
21,120 KB
testcase_32 AC 413 ms
21,632 KB
testcase_33 AC 45 ms
12,608 KB
testcase_34 AC 97 ms
12,612 KB
testcase_35 AC 375 ms
33,268 KB
testcase_36 AC 384 ms
33,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); ++i)
using namespace std;
using ll = long long;
using PL = pair<long long, long long>;
const long long mod = 998244353LL;

vector<ll> node;
vector<ll> nodf;
int sz = 1;
void init(int n){
    while (sz < n) sz *= 2;
    node.resize(2 * sz - 1);
    nodf.resize(2 * sz - 1);
    rep(i,2 * sz - 1) {node[i] = 0LL; nodf[i] = 0LL;}
}

void update(int a, ll b){
    a += sz - 1;
    node[a] += b;
    node[a] %= mod;
    while (a > 0){
        a = (a - 1) / 2;
        node[a] = node[2 * a + 1] + node[2 * a + 2];
        node[a] %= mod;
    }
}

void updatf(int a, ll b){
    a += sz - 1;
    nodf[a] += b;
    nodf[a] %= mod;
    while (a > 0){
        a = (a - 1) / 2;
        nodf[a] = nodf[2 * a + 1] + nodf[2 * a + 2];
        nodf[a] %= mod;
    }
}

ll query1(int a, int b, int k=0, int l=0, int r=sz){
    if (b <= l || r <= a) return 0LL;
    if (a <= l && r <= b) return (node[k] % mod);
    ll vl = query1(a,b,2*k+1,l,(l+r)/2);
    ll vr = query1(a,b,2*k+2,(l+r)/2,r);
    return ((vl + vr) % mod);
}

ll query2(int a, int b, int k=0, int l=0, int r=sz){
    if (b <= l || r <= a) return 0LL;
    if (a <= l && r <= b) return (nodf[k] % mod);
    ll vl = query2(a,b,2*k+1,l,(l+r)/2);
    ll vr = query2(a,b,2*k+2,(l+r)/2,r);
    return ((vl + vr) % mod);
}

int main(){
    int n; cin >> n;
    vector<ll> ar(n);
    rep(i,n) cin >> ar[i];
    reverse(ar.begin(),ar.end());
    vector<ll> al = ar;
    sort(al.begin(),al.end());
    al.erase(unique(al.begin(),al.end()),al.end());
    map<ll,int> mp;
    int si = al.size();
    rep(i,si) mp[al[i]] = i;
    init(si);
    vector<PL> dp(n);
    rep(i,n){
        int l = mp[ar[i]];
        ll a = query1(0,l,0,0,sz);
        ll b = query2(0,l,0,0,sz); 
        dp[i].first = a;
        dp[i].second = (b + (ar[i] * a % mod)) % mod;
        update(l,1LL);
        updatf(l,ar[i]);
    }
    vector<PL> ep(n);
    init(si);
    rep(i,n){
        int l = mp[ar[i]];
        ll a = query1(0,l,0,0,sz);
        ll b = query2(0,l,0,0,sz);
        ep[i].first = a;
        ep[i].second = (b + (ar[i] * a % mod)) % mod;
        update(l,dp[i].first);
        updatf(l,dp[i].second);
    }
    ll ans = 0LL;
    rep(i,n){
        ans += ep[i].second;
        ans %= mod;
    }
    cout << ans << endl;
}
0