結果
問題 | No.1300 Sum of Inversions |
ユーザー | neterukun |
提出日時 | 2020-11-27 22:04:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 899 ms / 2,000 ms |
コード長 | 1,998 bytes |
コンパイル時間 | 319 ms |
コンパイル使用メモリ | 82,484 KB |
実行使用メモリ | 122,452 KB |
最終ジャッジ日時 | 2024-07-26 12:51:57 |
合計ジャッジ時間 | 23,374 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,928 KB |
testcase_01 | AC | 35 ms
52,940 KB |
testcase_02 | AC | 36 ms
52,596 KB |
testcase_03 | AC | 708 ms
103,916 KB |
testcase_04 | AC | 667 ms
103,852 KB |
testcase_05 | AC | 550 ms
99,884 KB |
testcase_06 | AC | 791 ms
106,188 KB |
testcase_07 | AC | 754 ms
106,152 KB |
testcase_08 | AC | 802 ms
105,832 KB |
testcase_09 | AC | 817 ms
105,688 KB |
testcase_10 | AC | 466 ms
96,292 KB |
testcase_11 | AC | 462 ms
96,344 KB |
testcase_12 | AC | 677 ms
103,900 KB |
testcase_13 | AC | 670 ms
103,836 KB |
testcase_14 | AC | 899 ms
110,632 KB |
testcase_15 | AC | 797 ms
105,784 KB |
testcase_16 | AC | 687 ms
103,820 KB |
testcase_17 | AC | 448 ms
94,048 KB |
testcase_18 | AC | 508 ms
97,152 KB |
testcase_19 | AC | 596 ms
102,456 KB |
testcase_20 | AC | 620 ms
103,008 KB |
testcase_21 | AC | 614 ms
102,848 KB |
testcase_22 | AC | 570 ms
99,536 KB |
testcase_23 | AC | 764 ms
105,896 KB |
testcase_24 | AC | 577 ms
100,016 KB |
testcase_25 | AC | 479 ms
96,668 KB |
testcase_26 | AC | 483 ms
96,816 KB |
testcase_27 | AC | 547 ms
99,232 KB |
testcase_28 | AC | 861 ms
108,724 KB |
testcase_29 | AC | 611 ms
102,764 KB |
testcase_30 | AC | 805 ms
105,868 KB |
testcase_31 | AC | 545 ms
99,916 KB |
testcase_32 | AC | 598 ms
100,080 KB |
testcase_33 | AC | 319 ms
112,524 KB |
testcase_34 | AC | 339 ms
122,452 KB |
testcase_35 | AC | 328 ms
110,088 KB |
testcase_36 | AC | 387 ms
110,896 KB |
ソースコード
class BinaryIndexedTree: """一点加算、区間総和クエリをそれぞれO(logN)で答えるデータ構造。""" def __init__(self, n): self.size = n self.bit = [0] * (n + 1) def build(self, array): """arrayを初期値とするBinaryIndexedTreeを構築する。O(N)""" for i, val in enumerate(array): self.bit[i + 1] = val for i in range(1, self.size): if i + (i & -i) > self.size: continue self.bit[i + (i & -i)] += self.bit[i] def _sum(self, i): s = 0 while i > 0: s += self.bit[i] i -= i & -i return s def add(self, i, val): """i番目の要素にvalを加算する。O(logN)""" i += 1 while i <= self.size: self.bit[i] += val i += i & -i def sum(self, l, r): """区間[l, r)の和を求める。O(logN)""" return self._sum(r) - self._sum(l) n = int(input()) a = list(map(int, input().split())) MOD = 998244353 sorted_a = sorted([(a[i], i) for i in range(n)]) + [(-1, -1)] bitl_cnt = BinaryIndexedTree(n) bitl_val = BinaryIndexedTree(n) bitl_cnt.build([1] * n) bitl_val.build([val for val in a]) bits_cnt = BinaryIndexedTree(n) bits_val = BinaryIndexedTree(n) ans = 0 i = 0 while i < n: val, idx = sorted_a[i] idxs = [idx] while sorted_a[i][0] == sorted_a[i + 1][0]: i += 1 idxs.append(sorted_a[i][1]) for idx in idxs: bitl_cnt.add(idx, -1) bitl_val.add(idx, -val) for idx in idxs: cnt_large = bitl_cnt.sum(0, idx) sum_large = bitl_val.sum(0, idx) cnt_small = bits_cnt.sum(idx + 1, n) sum_small = bits_val.sum(idx + 1, n) ans += val * (cnt_large) * (cnt_small) ans += cnt_large * sum_small + cnt_small * sum_large ans %= MOD for idx in idxs: bits_cnt.add(idx, 1) bits_val.add(idx, val) i += 1 print(ans)