結果

問題 No.2665 Minimize Inversions of Deque
ユーザー 👑 rin204rin204
提出日時 2024-03-08 21:07:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,366 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-29 18:51:03
合計ジャッジ時間 10,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 274 ms
78,872 KB
testcase_02 AC 280 ms
77,824 KB
testcase_03 AC 264 ms
78,096 KB
testcase_04 AC 265 ms
77,964 KB
testcase_05 AC 264 ms
77,964 KB
testcase_06 AC 268 ms
77,728 KB
testcase_07 AC 262 ms
78,352 KB
testcase_08 AC 259 ms
78,096 KB
testcase_09 AC 262 ms
78,104 KB
testcase_10 AC 261 ms
77,728 KB
testcase_11 AC 251 ms
77,584 KB
testcase_12 AC 257 ms
77,820 KB
testcase_13 AC 255 ms
77,976 KB
testcase_14 AC 253 ms
78,424 KB
testcase_15 AC 260 ms
77,832 KB
testcase_16 AC 263 ms
77,732 KB
testcase_17 AC 271 ms
77,724 KB
testcase_18 AC 271 ms
77,472 KB
testcase_19 AC 149 ms
77,736 KB
testcase_20 AC 66 ms
76,672 KB
testcase_21 AC 67 ms
76,416 KB
testcase_22 AC 66 ms
76,460 KB
testcase_23 AC 64 ms
76,672 KB
testcase_24 AC 65 ms
76,652 KB
testcase_25 AC 63 ms
76,160 KB
testcase_26 AC 65 ms
76,672 KB
testcase_27 AC 65 ms
76,032 KB
testcase_28 AC 63 ms
76,032 KB
testcase_29 AC 68 ms
76,516 KB
testcase_30 AC 201 ms
103,936 KB
testcase_31 AC 182 ms
92,064 KB
testcase_32 AC 191 ms
96,476 KB
testcase_33 AC 199 ms
100,736 KB
testcase_34 AC 179 ms
91,836 KB
testcase_35 AC 186 ms
107,904 KB
testcase_36 AC 185 ms
107,904 KB
testcase_37 AC 175 ms
93,536 KB
testcase_38 AC 186 ms
97,488 KB
testcase_39 AC 201 ms
107,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n
        self.data = [0] * (n + 1)
        if n == 0:
            self.n0 = 0
        else:
            self.n0 = 1 << (n.bit_length() - 1)

    def sum_(self, i):
        s = 0
        while i > 0:
            s += self.data[i]
            i -= i & -i
        return s

    def sum(self, l, r=-1):
        if r == -1:
            return self.sum_(l)
        else:
            return self.sum_(r) - self.sum_(l)

    def get(self, i):
        return self.sum(i, i + 1)

    def add(self, i, x):
        i += 1
        while i <= self.n:
            self.data[i] += x
            i += i & -i

    def lower_bound(self, x):
        if x <= 0:
            return 0
        i = 0
        k = self.n0
        while k > 0:
            if i + k <= self.n and self.data[i + k] < x:
                x -= self.data[i + k]
                i += k
            k //= 2
        return i + 1


def solve():
    n = int(input())
    P = list(map(int, input().split()))
    ans = 0
    bit = BIT(n + 1)
    L = []
    R = []
    for p in P:
        l = bit.sum(p)
        r = bit.sum(p + 1, n + 1)
        if l < r:
            ans += l
            L.append(p)
        else:
            ans += r
            R.append(p)
        bit.add(p, 1)

    print(ans)
    print(*(L[::-1] + R))


for _ in range(int(input())):
    solve()
0