結果
問題 | No.1300 Sum of Inversions |
ユーザー | c-yan |
提出日時 | 2020-12-05 00:12:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,496 bytes |
コンパイル時間 | 86 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 45,128 KB |
最終ジャッジ日時 | 2024-09-15 09:15:01 |
合計ジャッジ時間 | 5,353 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
16,384 KB |
testcase_01 | AC | 32 ms
11,008 KB |
testcase_02 | AC | 31 ms
11,008 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
def bit_add(bit, i, x): i += 1 n = len(bit) while i <= n: bit[i - 1] += x i += i & -i def bit_sum(bit, i): result = 0 i += 1 while i > 0: result += bit[i - 1] i -= i & -i return result def bit_query(bit, start, stop): return bit_sum(bit, stop - 1) - bit_sum(bit, start - 1) def bit_add_m(bit, i, x): i += 1 n = len(bit) while i <= n: bit[i - 1] += x bit[i - 1] %= m i += i & -i def bit_sum_m(bit, i): result = 0 i += 1 while i > 0: result += bit[i - 1] result %= m i -= i & -i return result def bit_query_m(bit, start, stop): return (bit_sum(bit, stop - 1) - bit_sum(bit, start - 1)) % m N, *A = map(int, open(0).read().split()) m = 998244353 to = {x: i for i, x in enumerate(sorted(set(x for x in A)))} n = len(to.keys()) lbitc = [0] * n rbitc = [0] * n lbits = [0] * n rbits = [0] * n for x in A[2:]: i = to[x] bit_add(rbitc, i, 1) bit_add_m(rbits, i, x) bit_add(lbitc, to[A[0]], 1) bit_add_m(lbits, to[A[0]], A[0]) result = 0 for i in range(1, N - 1): x = to[A[i]] y = bit_query(lbitc, x + 1, n) z = bit_query(rbitc, 0, x) result += bit_query_m(lbits, x + 1, n) * z result += A[i] * (y * z) result += bit_query_m(rbits, 0, x) * y result %= m bit_add(lbitc, x, 1) bit_add_m(lbits, x, A[i]) x = to[A[i + 1]] bit_add(rbitc, x, -1) bit_add_m(rbits, x, -A[i + 1]) print(result)