結果

問題 No.1300 Sum of Inversions
ユーザー SSRSSSRS
提出日時 2020-11-27 21:34:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,672 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 183,344 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-07-26 11:49:25
合計ジャッジ時間 10,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 223 ms
21,376 KB
testcase_04 AC 218 ms
20,864 KB
testcase_05 AC 175 ms
17,920 KB
testcase_06 AC 253 ms
23,424 KB
testcase_07 AC 246 ms
22,528 KB
testcase_08 AC 291 ms
24,576 KB
testcase_09 AC 278 ms
24,576 KB
testcase_10 AC 140 ms
15,360 KB
testcase_11 AC 141 ms
15,616 KB
testcase_12 AC 223 ms
20,864 KB
testcase_13 AC 223 ms
20,480 KB
testcase_14 AC 303 ms
26,368 KB
testcase_15 AC 277 ms
24,320 KB
testcase_16 AC 233 ms
21,888 KB
testcase_17 AC 139 ms
14,976 KB
testcase_18 AC 164 ms
16,640 KB
testcase_19 AC 192 ms
18,944 KB
testcase_20 AC 205 ms
19,328 KB
testcase_21 AC 199 ms
19,200 KB
testcase_22 AC 176 ms
17,920 KB
testcase_23 AC 256 ms
23,552 KB
testcase_24 AC 186 ms
18,304 KB
testcase_25 AC 157 ms
16,256 KB
testcase_26 AC 153 ms
16,000 KB
testcase_27 AC 173 ms
17,408 KB
testcase_28 AC 290 ms
25,088 KB
testcase_29 AC 194 ms
19,072 KB
testcase_30 AC 270 ms
24,448 KB
testcase_31 AC 172 ms
17,920 KB
testcase_32 AC 184 ms
18,432 KB
testcase_33 AC 43 ms
11,008 KB
testcase_34 AC 95 ms
11,136 KB
testcase_35 AC 186 ms
26,624 KB
testcase_36 AC 208 ms
26,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
struct binary_indexed_tree{
  int N;
  vector<long long> BIT;
  binary_indexed_tree(int N): N(N){
    BIT = vector<long long>(N + 1, 0);
  }
  void add(int i, long long x){
    i++;
    while (i <= N){
      BIT[i] += x;
      BIT[i] %= MOD;
      i += i & -i;
    }
  }
  long long sum(int i){
    long long ans = 0;
    while (i > 0){
      ans += BIT[i];
      ans %= MOD;
      i -= i & -i;
    }
    return ans;
  }
  long long sum(int L, int R){
    return (sum(R) - sum(L) + MOD) % MOD;
  }
};
int main(){
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> A2 = A;
  sort(A2.begin(), A2.end());
  A2.erase(unique(A2.begin(), A2.end()), A2.end());
  int cnt = A2.size();
  map<int, int> mp;
  for (int i = 0; i < cnt; i++){
    mp[A2[i]] = i;
  }
  for (int i = 0; i < N; i++){
    A[i] = mp[A[i]];
  }
  vector<long long> F(N, 0);
  vector<long long> Fc(N, 0);
  binary_indexed_tree BIT1(cnt);
  binary_indexed_tree BIT2(cnt);
  for (int i = 0; i < N; i++){
    F[i] = BIT1.sum(A[i] + 1, cnt);
    Fc[i] = BIT2.sum(A[i] + 1, cnt);
    BIT1.add(A[i], A2[A[i]]);
    BIT2.add(A[i], 1);
  }
  vector<long long> B(N, 0);
  vector<long long> Bc(N, 0);
  binary_indexed_tree BIT3(cnt);
  binary_indexed_tree BIT4(cnt);
  for (int i = N - 1; i >= 0; i--){
    B[i] = BIT3.sum(A[i]);
    Bc[i] = BIT4.sum(A[i]);
    BIT3.add(A[i], A2[A[i]]);
    BIT4.add(A[i], 1);
  }
  long long ans = 0;
  for (int i = 0; i < N; i++){
    ans += F[i] * Bc[i] + B[i] * Fc[i] + Bc[i] * Fc[i] % MOD * A2[A[i]];
    ans %= MOD;
  }
  cout << ans << endl;
}
0