結果

問題 No.1300 Sum of Inversions
ユーザー 👑 CleyLCleyL
提出日時 2022-10-22 01:26:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,330 bytes
コンパイル時間 1,048 ms
コンパイル使用メモリ 98,036 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-07-01 09:05:07
合計ジャッジ時間 18,603 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 528 ms
16,512 KB
testcase_04 AC 499 ms
16,128 KB
testcase_05 AC 396 ms
13,952 KB
testcase_06 AC 615 ms
18,048 KB
testcase_07 AC 586 ms
17,408 KB
testcase_08 AC 660 ms
18,816 KB
testcase_09 AC 648 ms
18,816 KB
testcase_10 AC 318 ms
12,160 KB
testcase_11 AC 323 ms
12,288 KB
testcase_12 AC 520 ms
16,128 KB
testcase_13 AC 510 ms
15,872 KB
testcase_14 AC 718 ms
20,096 KB
testcase_15 AC 646 ms
18,688 KB
testcase_16 AC 548 ms
16,896 KB
testcase_17 AC 310 ms
11,904 KB
testcase_18 AC 374 ms
13,056 KB
testcase_19 AC 448 ms
14,720 KB
testcase_20 AC 474 ms
15,104 KB
testcase_21 AC 459 ms
14,976 KB
testcase_22 AC 407 ms
14,208 KB
testcase_23 AC 603 ms
18,048 KB
testcase_24 AC 420 ms
14,208 KB
testcase_25 AC 346 ms
12,928 KB
testcase_26 AC 332 ms
12,544 KB
testcase_27 AC 391 ms
13,568 KB
testcase_28 AC 658 ms
19,200 KB
testcase_29 AC 452 ms
14,848 KB
testcase_30 AC 658 ms
18,688 KB
testcase_31 AC 395 ms
14,336 KB
testcase_32 AC 412 ms
14,336 KB
testcase_33 AC 45 ms
5,376 KB
testcase_34 AC 102 ms
5,376 KB
testcase_35 AC 411 ms
20,352 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))%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