結果

問題 No.1300 Sum of Inversions
ユーザー yataro800yataro800
提出日時 2023-01-28 17:05:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 1,647 bytes
コンパイル時間 4,252 ms
コンパイル使用メモリ 240,988 KB
実行使用メモリ 33,024 KB
最終ジャッジ日時 2024-06-28 20:04:06
合計ジャッジ時間 20,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 462 ms
26,112 KB
testcase_04 AC 452 ms
25,600 KB
testcase_05 AC 342 ms
21,760 KB
testcase_06 AC 468 ms
28,800 KB
testcase_07 AC 495 ms
27,904 KB
testcase_08 AC 558 ms
30,336 KB
testcase_09 AC 524 ms
30,080 KB
testcase_10 AC 239 ms
18,560 KB
testcase_11 AC 226 ms
18,816 KB
testcase_12 AC 414 ms
25,600 KB
testcase_13 AC 410 ms
25,088 KB
testcase_14 AC 637 ms
32,512 KB
testcase_15 AC 528 ms
29,952 KB
testcase_16 AC 468 ms
26,752 KB
testcase_17 AC 223 ms
18,176 KB
testcase_18 AC 296 ms
20,224 KB
testcase_19 AC 365 ms
23,296 KB
testcase_20 AC 364 ms
23,680 KB
testcase_21 AC 402 ms
23,552 KB
testcase_22 AC 352 ms
21,632 KB
testcase_23 AC 512 ms
28,928 KB
testcase_24 AC 367 ms
22,400 KB
testcase_25 AC 301 ms
19,712 KB
testcase_26 AC 288 ms
19,584 KB
testcase_27 AC 321 ms
21,248 KB
testcase_28 AC 544 ms
30,848 KB
testcase_29 AC 401 ms
23,296 KB
testcase_30 AC 541 ms
30,080 KB
testcase_31 AC 337 ms
22,016 KB
testcase_32 AC 352 ms
22,656 KB
testcase_33 AC 105 ms
11,008 KB
testcase_34 AC 163 ms
11,136 KB
testcase_35 AC 280 ms
33,024 KB
testcase_36 AC 300 ms
33,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <math.h>

#include <algorithm>
#include <array>
#include <atcoder/all>
#include <bitset>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <sstream>
#include <vector>

using namespace std;
using namespace atcoder;

using Graph = vector<vector<int>>;

using ll = long long;
typedef pair<ll, ll> P_ll;
typedef pair<int, int> P;

const ll INF_ll = 1e17;
const int INF = 1e8;
template <class T>
bool chmax(T& a, const T& b) {
  if (a < b) {
    a = b;
    return 1;
  }
  return 0;
}
template <class T>
bool chmin(T& a, const T& b) {
  if (b < a) {
    a = b;
    return 1;
  }
  return 0;
}
template <typename T>
using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;

int main() {
  int N;
  cin >> N;
  vector<ll> A(N);
  for (int i = 0; i < N; i++) {
    cin >> A[i];
  }
  set<ll> s(A.begin(), A.end());
  map<ll, ll> d;
  int cnt = 0;
  for (auto x : s) d[x] = cnt++;

  fenwick_tree<ll> cl(N), sl(N), cr(N), sr(N);
  for (int i = 0; i < N; i++) {
    ll x = d[A[i]];
    cr.add(x, 1);
    sr.add(x, A[i]);
  }
  modint998244353 ans = 0;
  for (int i = 0; i < N; i++) {
    ll x = d[A[i]];
    {
      modint998244353 a = 1;
      a *= sr.sum(0, x);
      a *= cl.sum(x + 1, N);
      ans += a;
    }
    {
      modint998244353 a = 1;
      a *= sl.sum(x + 1, N);
      a *= cr.sum(0, x);
      ans += a;
    }
    {
      modint998244353 a = 1;
      a *= cr.sum(0, x);
      a *= cl.sum(x + 1, N);
      a *= A[i];
      ans += a;
    }
    cl.add(x, 1);
    sl.add(x, A[i]);
    cr.add(x, -1);
    sr.add(x, -A[i]);
  }
  cout << ans.val() << endl;

  return 0;
}
0