結果

問題 No.1300 Sum of Inversions
ユーザー 👑 CleyLCleyL
提出日時 2022-10-22 01:05:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,314 bytes
コンパイル時間 1,096 ms
コンパイル使用メモリ 98,028 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-07-01 08:51:30
合計ジャッジ時間 18,331 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 531 ms
16,512 KB
testcase_04 AC 510 ms
16,256 KB
testcase_05 AC 397 ms
13,952 KB
testcase_06 AC 602 ms
18,176 KB
testcase_07 AC 576 ms
17,408 KB
testcase_08 AC 647 ms
18,816 KB
testcase_09 AC 651 ms
18,816 KB
testcase_10 AC 314 ms
12,160 KB
testcase_11 AC 320 ms
12,288 KB
testcase_12 AC 519 ms
16,256 KB
testcase_13 AC 499 ms
16,000 KB
testcase_14 AC 707 ms
20,096 KB
testcase_15 AC 641 ms
18,688 KB
testcase_16 AC 545 ms
16,768 KB
testcase_17 AC 307 ms
11,776 KB
testcase_18 AC 364 ms
13,056 KB
testcase_19 AC 444 ms
14,720 KB
testcase_20 AC 458 ms
15,104 KB
testcase_21 AC 462 ms
14,976 KB
testcase_22 AC 396 ms
13,952 KB
testcase_23 AC 610 ms
18,176 KB
testcase_24 AC 419 ms
14,208 KB
testcase_25 AC 342 ms
12,800 KB
testcase_26 AC 332 ms
12,544 KB
testcase_27 AC 388 ms
13,696 KB
testcase_28 AC 675 ms
19,328 KB
testcase_29 AC 448 ms
14,848 KB
testcase_30 AC 657 ms
18,816 KB
testcase_31 AC 413 ms
14,080 KB
testcase_32 AC 427 ms
14,336 KB
testcase_33 AC 46 ms
5,376 KB
testcase_34 AC 102 ms
5,376 KB
testcase_35 AC 412 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*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