結果
問題 | No.1996 <>< |
ユーザー | MasKoaTS |
提出日時 | 2021-12-19 13:59:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,044 bytes |
コンパイル時間 | 3,968 ms |
コンパイル使用メモリ | 271,324 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 14:44:53 |
合計ジャッジ時間 | 4,776 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#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() 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); VV<ll> s(n, V<ll>(2)); rep(i, 0, n) { cin >> a[i]; s[i] = { a[i],i }; } sort(all(s)); int cnt = -1; int last = -1; for (auto& l : s) { if (l[0] != last) { cnt += 1; } a[l[1]] = cnt; b[l[1]] = (ll)n - 1 - cnt; last = l[0]; } BIT<ll> lbt(n); V<ll> lcnt(n); BIT<ll> rbt(n); V<ll> rcnt(n); rep(i, 0, n) { lbt.add(a[i], 1); rbt.add(b[(ll)n - 1 - i], 1); lcnt[i] = lbt.sum(0, a[i]); rcnt[(ll)n - 1 - i] = rbt.sum(0, b[(ll)n - 1 - i]); } 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; }