結果

問題 No.1300 Sum of Inversions
ユーザー kaede2020kaede2020
提出日時 2020-11-28 14:45:53
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 2,680 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 177,936 KB
実行使用メモリ 11,868 KB
最終ジャッジ日時 2024-09-12 22:28:50
合計ジャッジ時間 7,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 136 ms
10,028 KB
testcase_04 AC 130 ms
9,728 KB
testcase_05 AC 107 ms
8,584 KB
testcase_06 AC 150 ms
10,624 KB
testcase_07 AC 145 ms
10,368 KB
testcase_08 AC 161 ms
11,016 KB
testcase_09 AC 161 ms
11,008 KB
testcase_10 AC 87 ms
7,680 KB
testcase_11 AC 89 ms
7,712 KB
testcase_12 AC 131 ms
9,728 KB
testcase_13 AC 129 ms
9,600 KB
testcase_14 AC 174 ms
11,868 KB
testcase_15 AC 159 ms
11,008 KB
testcase_16 AC 139 ms
10,144 KB
testcase_17 AC 84 ms
7,560 KB
testcase_18 AC 99 ms
8,192 KB
testcase_19 AC 116 ms
9,000 KB
testcase_20 AC 120 ms
9,092 KB
testcase_21 AC 118 ms
9,088 KB
testcase_22 AC 108 ms
8,576 KB
testcase_23 AC 150 ms
10,624 KB
testcase_24 AC 112 ms
8,704 KB
testcase_25 AC 94 ms
8,032 KB
testcase_26 AC 92 ms
8,092 KB
testcase_27 AC 103 ms
8,608 KB
testcase_28 AC 165 ms
11,272 KB
testcase_29 AC 114 ms
9,216 KB
testcase_30 AC 158 ms
11,008 KB
testcase_31 AC 107 ms
8,748 KB
testcase_32 AC 112 ms
8,832 KB
testcase_33 AC 45 ms
9,472 KB
testcase_34 AC 102 ms
9,472 KB
testcase_35 AC 112 ms
11,776 KB
testcase_36 AC 134 ms
11,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define rep(i, n) for (ll i = 0; i < (ll)(n); i++)
//勉強用写し

const int MOD = 998244353;
struct mint {
  long long x; // typedef long long ll;
  mint(long long x=0):x((x%MOD+MOD)%MOD){}
  mint operator-() const { return mint(-x);}
  mint& operator+=(const mint a) {
    if ((x += a.x) >= MOD) x -= MOD;
    return *this;
  }
  mint& operator-=(const mint a) {
    if ((x += MOD-a.x) >= MOD) x -= MOD;
    return *this;
  }
  mint& operator*=(const mint a) { (x *= a.x) %= MOD; return *this;}
  mint operator+(const mint a) const { return mint(*this) += a;}
  mint operator-(const mint a) const { return mint(*this) -= a;}
  mint operator*(const mint a) const { return mint(*this) *= a;}
  mint pow(long long t) const {
    if (!t) return 1;
    mint a = pow(t>>1);
    a *= a;
    if (t&1) a *= *this;
    return a;
  }
 
  // for prime MOD
  mint inv() const { return pow(MOD-2);}
  mint& operator/=(const mint a) { return *this *= a.inv();}
  mint operator/(const mint a) const { return mint(*this) /= a;}
};
istream& operator>>(istream& is, const mint& a) { return is >> a.x;}
ostream& operator<<(ostream& os, const mint& a) { return os << a.x;}

template<typename T>
struct BIT {
  int n;
  vector<T> d;
  BIT(int n=0):n(n),d(n+1) {}
  void add(int i, T x=1) {
    for (i++; i <= n; i += i&-i) {
      d[i] += x;
    }
  }
  T sum(int i) {
    T x = 0;
    for (i++; i; i -= i&-i) {
      x += d[i];
    }
    return x;
  }
  T sum(int l, int r) {
    return sum(r-1) - sum(l-1);
  }
};
template <class T>
std::vector<T> press(std::vector<T> &x) {
	auto res = x;
	std::sort(res.begin(), res.end());
	res.erase(std::unique(res.begin(), res.end()), res.end());
	for(int i = 0; i < (int)x.size(); i++)
		x[i] = std::lower_bound(res.begin(), res.end(), x[i]) - res.begin();
	return res;
}

mint res; 
int main() {
  int n;
  cin >> n;
  vector<int> a(n,0);
  rep(i,n) cin >> a[i];
  //座標圧縮
 	auto rec = press(a);
	int m = rec.size();
  //以下は前準備
  vector<mint> x(n), y(n);
	vector<int> l(n), r(n);

	{
		BIT<mint> BT(m);
		BIT<int> kosuu(m);
		for(int i = 0; i < n; i++) {
			BT.add(a[i], rec[a[i]]);
			kosuu.add(a[i], 1);
			x[i] = BT.sum(a[i] + 1, m);
			l[i] = kosuu.sum(a[i] + 1, m);
		}
	}

	{
		BIT<mint> BT(m);
		BIT<int> kosuu(m);
		for(int i = n - 1; i >= 0; i--) {
			BT.add(a[i], rec[a[i]]);
			kosuu.add(a[i], 1);
			y[i] = BT.sum(0, a[i]);
			r[i] = kosuu.sum(0, a[i]);
		}
	}
	//答えの計算
	for(int j = 0; j < n; j++) {
		if(!l[j] * r[j]) continue;
		mint tmp = rec[a[j]];
		res += x[j] * r[j] + y[j] * l[j] + tmp * l[j] * r[j];
	}
	cout << res << endl;
	return 0;
}
0