結果

問題 No.2665 Minimize Inversions of Deque
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-12-10 01:41:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 2,121 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-12-10 01:41:23
合計ジャッジ時間 10,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 249 ms
83,892 KB
testcase_02 AC 234 ms
82,944 KB
testcase_03 AC 238 ms
82,432 KB
testcase_04 AC 270 ms
82,688 KB
testcase_05 AC 223 ms
82,672 KB
testcase_06 AC 227 ms
82,560 KB
testcase_07 AC 227 ms
82,816 KB
testcase_08 AC 252 ms
82,688 KB
testcase_09 AC 219 ms
82,816 KB
testcase_10 AC 230 ms
82,560 KB
testcase_11 AC 237 ms
82,688 KB
testcase_12 AC 225 ms
82,688 KB
testcase_13 AC 256 ms
83,328 KB
testcase_14 AC 218 ms
82,816 KB
testcase_15 AC 232 ms
82,816 KB
testcase_16 AC 228 ms
82,688 KB
testcase_17 AC 222 ms
82,432 KB
testcase_18 AC 242 ms
83,072 KB
testcase_19 AC 147 ms
77,824 KB
testcase_20 AC 69 ms
76,800 KB
testcase_21 AC 67 ms
76,416 KB
testcase_22 AC 71 ms
76,416 KB
testcase_23 AC 74 ms
76,544 KB
testcase_24 AC 70 ms
76,544 KB
testcase_25 AC 70 ms
76,800 KB
testcase_26 AC 70 ms
76,416 KB
testcase_27 AC 70 ms
76,416 KB
testcase_28 AC 69 ms
76,544 KB
testcase_29 AC 85 ms
76,672 KB
testcase_30 AC 222 ms
104,320 KB
testcase_31 AC 205 ms
92,560 KB
testcase_32 AC 209 ms
96,108 KB
testcase_33 AC 220 ms
103,920 KB
testcase_34 AC 232 ms
93,832 KB
testcase_35 AC 217 ms
107,520 KB
testcase_36 AC 189 ms
108,160 KB
testcase_37 AC 203 ms
94,076 KB
testcase_38 AC 217 ms
98,512 KB
testcase_39 AC 248 ms
107,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2665

from collections import deque

class BinaryIndexTree:
    """
    フェニック木(BinaryIndexTree)の基本的な機能を実装したクラス
    """
    def __init__(self, size):
        self.size = size
        self.array = [0] * (size + 1)
    
    def add(self, x, a):
        index = x
        while index <= self.size:
            self.array[index] += a
            index += index & (-index)
    
    def sum(self, x):
        index = x
        ans = 0
        while index > 0:
            ans += self.array[index]
            index -= index & (-index)
        return ans

    def least_upper_bound(self, value):
        if self.sum(self.size) < value:
            return -1
        elif value <= 0:
            return 0

        m = 1
        while m < self.size:
            m *= 2

        k = 0
        k_sum = 0
        while m > 0:
            k0 = k + m
            if k0 < self.size:
                if k_sum + self.array[k0] < value:
                    k_sum += self.array[k0]
                    k += m
            m //= 2
        if k < self.size:
            return k + 1
        else:
            return -1


def solve(n, P):
    bit = BinaryIndexTree(n)

    queue = deque()
    answer = 0
    for p in P:
        if len(queue) == 0:
            queue.append(p)
            bit.add(p, 1)
        else:
            back = len(queue) - bit.sum(p)
            front = bit.sum(p)

            if front >= back:
                queue.append(p)
                answer += back
            else:
                queue.appendleft(p)
                answer += front
            bit.add(p, 1)

    array = []
    while len(queue) > 0:
        array.append(queue.popleft())    
    return [
        answer,
        " ".join(map(str, array))
    ]


def main():
    T = int(input())
    answers = []
    for _ in range(T):
        n = int(input())
        P = list(map(int, input().split()))
        ans = solve(n, P)
        answers.append(ans)
    
    for ans in answers:
        print(ans[0])
        print(ans[1])


    



if __name__ == "__main__":
    main()
0