結果

問題 No.1996 <><
ユーザー MasKoaTSMasKoaTS
提出日時 2021-12-19 18:32:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,008 bytes
コンパイル時間 4,995 ms
コンパイル使用メモリ 267,548 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 14:45:00
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
#define all(x) x.begin(), x.end()
#define lb(a, x) lower_bound(all(a), x) - a.begin()
using namespace std;
using namespace atcoder;
using ll = long long;
template <class T>	using V = vector<T>;
template <class T>	using VV = V<V<T> >;
template <class T>	using BIT = fenwick_tree<T>;
const ll MOD = 998244353;


int main(void) {
	int n;	cin >> n;
	V<ll> a(n);		V<ll> b(n);
	rep(i, 0, n) {
		cin >> a[i];
	}

	V<ll> s = a;	sort(all(s));
	s.erase(unique(all(s)), s.end());
	rep(i, 0, a.size()) {
		a[i] = lb(s, a[i]);
		b[i] = s.size() - 1 - a[i];
	}

	BIT<ll> lbt(n);		V<ll> lcnt(n);
	BIT<ll> rbt(n);		V<ll> rcnt(n);
	rep(i, 0, n) {
		int k = n - 1 - i;
		lbt.add(a[i], 1);
		rbt.add(b[k], 1);
		lcnt[i] = lbt.sum(0, a[i]);
		rcnt[k] = rbt.sum(0, b[k]);
	}
	
	BIT<ll> bt(n);		ll ans = 0;
	rep(i, 0, n) {
		bt.add(b[i], lcnt[i]);
		ans += bt.sum(0, b[i]) * rcnt[i];
		ans %= MOD;
	}
			
	cout << ans << endl;
}
0