結果

問題 No.2665 Minimize Inversions of Deque
ユーザー miya145592miya145592
提出日時 2024-03-08 22:57:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 1,988 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 109,528 KB
最終ジャッジ日時 2024-09-29 20:28:00
合計ジャッジ時間 11,312 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,528 KB
testcase_01 AC 227 ms
82,368 KB
testcase_02 AC 279 ms
83,676 KB
testcase_03 AC 223 ms
82,252 KB
testcase_04 AC 229 ms
82,816 KB
testcase_05 AC 226 ms
82,156 KB
testcase_06 AC 241 ms
83,028 KB
testcase_07 AC 226 ms
82,272 KB
testcase_08 AC 239 ms
82,688 KB
testcase_09 AC 228 ms
83,204 KB
testcase_10 AC 237 ms
82,724 KB
testcase_11 AC 221 ms
82,452 KB
testcase_12 AC 220 ms
82,152 KB
testcase_13 AC 221 ms
81,872 KB
testcase_14 AC 228 ms
82,388 KB
testcase_15 AC 233 ms
82,516 KB
testcase_16 AC 227 ms
82,304 KB
testcase_17 AC 232 ms
82,968 KB
testcase_18 AC 227 ms
82,244 KB
testcase_19 AC 141 ms
78,760 KB
testcase_20 AC 97 ms
77,824 KB
testcase_21 AC 99 ms
77,652 KB
testcase_22 AC 93 ms
77,440 KB
testcase_23 AC 103 ms
77,696 KB
testcase_24 AC 100 ms
78,024 KB
testcase_25 AC 93 ms
77,304 KB
testcase_26 AC 103 ms
77,788 KB
testcase_27 AC 103 ms
77,824 KB
testcase_28 AC 93 ms
77,568 KB
testcase_29 AC 92 ms
77,568 KB
testcase_30 AC 347 ms
105,856 KB
testcase_31 AC 314 ms
94,208 KB
testcase_32 AC 324 ms
97,940 KB
testcase_33 AC 348 ms
105,344 KB
testcase_34 AC 319 ms
95,180 KB
testcase_35 AC 275 ms
109,312 KB
testcase_36 AC 273 ms
109,528 KB
testcase_37 AC 337 ms
95,776 KB
testcase_38 AC 346 ms
99,968 KB
testcase_39 AC 355 ms
109,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    def __init__(self, op, e, n, v=None):
        self._n = n
        self._op = op
        self._e = e
        self._log = (n - 1).bit_length()
        self._size = 1 << self._log
        self._d = [self._e()] * (self._size << 1)
        if v is not None:
            for i in range(self._n):
                self._d[self._size + i] = v[i]
            for i in range(self._size - 1, 0, -1):
                self._d[i] = self._op(self._d[i << 1], self._d[i << 1 | 1])

    def set(self, p, x):
        p += self._size
        self._d[p] = x
        while p:
            l, r = p, p^1
            if l > r: l, r = r, l
            self._d[p >> 1] = self._op(self._d[l], self._d[r])
            p >>= 1

    def get(self, p):
        return self._d[p + self._size]

    #[l, r)の区間で求める
    def prod(self, l, r):
        sml, smr = self._e(), self._e()
        l += self._size
        r += self._size
        while l < r:
            if l & 1:
                sml = self._op(sml, self._d[l])
                l += 1
            if r & 1:
                r -= 1
                smr = self._op(self._d[r], smr)
            l >>= 1
            r >>= 1
        return self._op(sml, smr)

    def all_prod(self):
        return self._d[1]

def op(x, y):
    return x+y

def e():
    return 0

from collections import deque
import sys
input = sys.stdin.readline
T = int(input())
for _ in range(T):
    N = int(input())
    P = list(map(int, input().split()))
    deq = deque()
    ST = SegTree(op, e, N)
    x = 0
    for i, p in enumerate(P):
        cnt = ST.prod(0, p)
        small = cnt
        large = i-cnt
        if small<large:
            deq.appendleft(p)
            x+=small
        elif small>large:
            deq.append(p)
            x+=large
        else:
            if len(deq)>0 and deq[0]>p:
                deq.appendleft(p)
            else:
                deq.append(p)
            x+=small
        ST.set(p-1, 1)
    print(x)
    print(*deq)
0