結果

問題 No.2665 Minimize Inversions of Deque
ユーザー Yakumo221Yakumo221
提出日時 2024-03-08 22:46:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 1,221 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 108,004 KB
最終ジャッジ日時 2024-09-29 20:16:00
合計ジャッジ時間 10,086 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,604 KB
testcase_01 AC 248 ms
78,340 KB
testcase_02 AC 241 ms
78,260 KB
testcase_03 AC 233 ms
78,520 KB
testcase_04 AC 231 ms
78,092 KB
testcase_05 AC 229 ms
78,276 KB
testcase_06 AC 238 ms
78,180 KB
testcase_07 AC 246 ms
78,092 KB
testcase_08 AC 244 ms
78,188 KB
testcase_09 AC 243 ms
78,096 KB
testcase_10 AC 253 ms
78,184 KB
testcase_11 AC 253 ms
78,268 KB
testcase_12 AC 249 ms
78,336 KB
testcase_13 AC 259 ms
78,144 KB
testcase_14 AC 250 ms
78,200 KB
testcase_15 AC 250 ms
78,000 KB
testcase_16 AC 247 ms
78,340 KB
testcase_17 AC 256 ms
78,580 KB
testcase_18 AC 248 ms
78,148 KB
testcase_19 AC 155 ms
78,364 KB
testcase_20 AC 76 ms
77,108 KB
testcase_21 AC 77 ms
76,924 KB
testcase_22 AC 74 ms
76,816 KB
testcase_23 AC 76 ms
77,372 KB
testcase_24 AC 75 ms
76,712 KB
testcase_25 AC 73 ms
76,988 KB
testcase_26 AC 74 ms
77,124 KB
testcase_27 AC 74 ms
76,720 KB
testcase_28 AC 73 ms
77,024 KB
testcase_29 AC 72 ms
77,052 KB
testcase_30 AC 211 ms
104,356 KB
testcase_31 AC 178 ms
91,444 KB
testcase_32 AC 197 ms
97,896 KB
testcase_33 AC 187 ms
98,304 KB
testcase_34 AC 170 ms
90,460 KB
testcase_35 AC 190 ms
107,808 KB
testcase_36 AC 180 ms
107,932 KB
testcase_37 AC 178 ms
90,136 KB
testcase_38 AC 183 ms
97,880 KB
testcase_39 AC 204 ms
108,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        assert i != 0
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i


def solve():
    n = int(input())
    plist = list(map(int, input().split()))
    deq = deque()

    bit = Bit(n+10)
    tento = 0
    for i in range(n):
        p = plist[i]
        # print(p)
        if i == 0:
            deq.append(p)
            bit.add(p,1)
            continue
        
        low = bit.sum(p)
        up = i-low

        # print(p, low, up)

        if low > up:
            deq.append(p)
            tento += up
        elif low == up:
            if deq[0] < p:
                deq.append(p)
                tento += up
            else:
                deq.appendleft(p)
                tento += low
        else:
            deq.appendleft(p)
            tento += low
        bit.add(p, 1)

        # print(deq)
    
    print(tento)
    print(*deq)




q = int(input())
while q:
    q -= 1
    solve()
0