結果

問題 No.1300 Sum of Inversions
ユーザー 👑 CleyLCleyL
提出日時 2022-10-22 01:24:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,322 bytes
コンパイル時間 1,098 ms
コンパイル使用メモリ 97,964 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-07-01 09:04:02
合計ジャッジ時間 18,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 534 ms
16,640 KB
testcase_04 AC 505 ms
16,256 KB
testcase_05 AC 403 ms
14,080 KB
testcase_06 AC 609 ms
18,176 KB
testcase_07 AC 587 ms
17,536 KB
testcase_08 AC 657 ms
18,944 KB
testcase_09 AC 651 ms
18,816 KB
testcase_10 AC 324 ms
12,160 KB
testcase_11 AC 323 ms
12,160 KB
testcase_12 AC 509 ms
16,128 KB
testcase_13 AC 503 ms
15,872 KB
testcase_14 AC 716 ms
20,096 KB
testcase_15 AC 647 ms
18,688 KB
testcase_16 AC 533 ms
16,896 KB
testcase_17 AC 303 ms
11,904 KB
testcase_18 AC 357 ms
13,184 KB
testcase_19 AC 438 ms
14,848 KB
testcase_20 AC 453 ms
14,976 KB
testcase_21 AC 459 ms
14,976 KB
testcase_22 AC 402 ms
13,952 KB
testcase_23 AC 604 ms
18,048 KB
testcase_24 AC 423 ms
14,208 KB
testcase_25 AC 346 ms
12,928 KB
testcase_26 AC 337 ms
12,672 KB
testcase_27 AC 390 ms
13,568 KB
testcase_28 AC 674 ms
19,200 KB
testcase_29 AC 454 ms
14,848 KB
testcase_30 AC 649 ms
18,944 KB
testcase_31 AC 404 ms
14,080 KB
testcase_32 AC 437 ms
14,336 KB
testcase_33 AC 44 ms
6,944 KB
testcase_34 AC 101 ms
6,944 KB
testcase_35 AC 409 ms
20,480 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
const long long MOD = 998244353;
//B
template<typename T>
struct BIT{//1_Indexed
    int n;
    vector<T> bit;
    BIT(int n_):n(n_+1),bit(n,0){}

    T sum(int a){
        T ret = 0;
        for(int i = a; i > 0; i -= i & -i) ret += bit[i];
        return ret;
    }

    void add(int a,int w){
        for(int i = a; i <= n; i += i & -i)bit[i] += w;
    }

    T query(int r,int l){
        return sum(l-1)-sum(r-1);
    }

};
//E
int main(){
  int n;cin>>n;
  vector<int> A(n),B(n);
  for(int i = 0; n > i; i++)cin>>A[i],B[i] = A[i];
  sort(B.begin(),B.end());
  B.erase(unique(B.begin(),B.end()),B.end());

  map<int,int> C;
  for(int i = 0; B.size() > i; i++){
    C[B[i]] = i+1;
  }
  BIT<long long> X(B.size()+1),Y(B.size()+1),Z(B.size()+1),W(B.size()+1);
  for(int i = 0; n > i; i++){
    Y.add(C[A[i]],1);
    W.add(C[A[i]],A[i]);
  }
  long long ans = 0;
  for(int i = 0; n > i; i++){
    auto x = X.query(C[A[i]]+1,B.size()+1);
    auto y = Y.query(1,C[A[i]]);
    auto z = Z.query(C[A[i]]+1,B.size()+1);
    auto w = W.query(1,C[A[i]]);
    ans = (ans + z*y + ((A[i]*x)%MOD)*y + w*x)%MOD;
    X.add(C[A[i]],1);
    Y.add(C[A[i]],-1);
    Z.add(C[A[i]],A[i]);
    W.add(C[A[i]],-A[i]);
  }
  cout << ans << endl;
}

0