結果
問題 | No.1300 Sum of Inversions |
ユーザー | SSRS |
提出日時 | 2020-11-27 21:33:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,660 bytes |
コンパイル時間 | 1,838 ms |
コンパイル使用メモリ | 184,640 KB |
実行使用メモリ | 25,088 KB |
最終ジャッジ日時 | 2024-07-26 11:47:42 |
合計ジャッジ時間 | 10,026 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 220 ms
20,224 KB |
testcase_04 | AC | 208 ms
19,584 KB |
testcase_05 | AC | 168 ms
16,896 KB |
testcase_06 | AC | 245 ms
22,272 KB |
testcase_07 | AC | 246 ms
21,248 KB |
testcase_08 | AC | 270 ms
23,168 KB |
testcase_09 | AC | 263 ms
23,168 KB |
testcase_10 | AC | 145 ms
14,592 KB |
testcase_11 | AC | 141 ms
14,720 KB |
testcase_12 | AC | 222 ms
19,712 KB |
testcase_13 | AC | 217 ms
19,328 KB |
testcase_14 | WA | - |
testcase_15 | AC | 269 ms
22,912 KB |
testcase_16 | AC | 226 ms
20,480 KB |
testcase_17 | AC | 135 ms
14,208 KB |
testcase_18 | AC | 161 ms
15,744 KB |
testcase_19 | AC | 190 ms
17,920 KB |
testcase_20 | AC | 201 ms
18,176 KB |
testcase_21 | AC | 194 ms
18,304 KB |
testcase_22 | AC | 172 ms
16,896 KB |
testcase_23 | AC | 252 ms
22,016 KB |
testcase_24 | AC | 185 ms
17,408 KB |
testcase_25 | AC | 153 ms
15,360 KB |
testcase_26 | AC | 147 ms
15,104 KB |
testcase_27 | AC | 166 ms
16,512 KB |
testcase_28 | WA | - |
testcase_29 | AC | 191 ms
18,048 KB |
testcase_30 | AC | 273 ms
23,040 KB |
testcase_31 | AC | 174 ms
17,024 KB |
testcase_32 | AC | 183 ms
17,408 KB |
testcase_33 | AC | 41 ms
9,472 KB |
testcase_34 | AC | 92 ms
9,472 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
#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<int> 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<int> 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; }