結果

問題 No.2665 Minimize Inversions of Deque
ユーザー 寝癖寝癖
提出日時 2024-03-08 21:29:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 1,896 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 110,780 KB
最終ジャッジ日時 2024-09-29 18:58:34
合計ジャッジ時間 13,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
66,304 KB
testcase_01 AC 358 ms
79,332 KB
testcase_02 AC 435 ms
81,140 KB
testcase_03 AC 347 ms
79,744 KB
testcase_04 AC 351 ms
80,008 KB
testcase_05 AC 360 ms
79,652 KB
testcase_06 AC 364 ms
79,864 KB
testcase_07 AC 357 ms
79,476 KB
testcase_08 AC 347 ms
79,752 KB
testcase_09 AC 353 ms
80,064 KB
testcase_10 AC 350 ms
79,608 KB
testcase_11 AC 359 ms
79,756 KB
testcase_12 AC 354 ms
79,388 KB
testcase_13 AC 358 ms
79,760 KB
testcase_14 AC 357 ms
79,396 KB
testcase_15 AC 349 ms
79,744 KB
testcase_16 AC 347 ms
79,640 KB
testcase_17 AC 370 ms
79,772 KB
testcase_18 AC 360 ms
79,644 KB
testcase_19 AC 217 ms
79,624 KB
testcase_20 AC 114 ms
79,104 KB
testcase_21 AC 113 ms
78,720 KB
testcase_22 AC 116 ms
78,592 KB
testcase_23 AC 113 ms
78,464 KB
testcase_24 AC 110 ms
78,592 KB
testcase_25 AC 113 ms
78,720 KB
testcase_26 AC 112 ms
78,720 KB
testcase_27 AC 111 ms
78,976 KB
testcase_28 AC 113 ms
78,976 KB
testcase_29 AC 113 ms
79,104 KB
testcase_30 AC 299 ms
104,720 KB
testcase_31 AC 270 ms
93,440 KB
testcase_32 AC 273 ms
95,740 KB
testcase_33 AC 284 ms
99,556 KB
testcase_34 AC 274 ms
95,200 KB
testcase_35 AC 280 ms
110,284 KB
testcase_36 AC 276 ms
110,780 KB
testcase_37 AC 298 ms
91,520 KB
testcase_38 AC 314 ms
98,964 KB
testcase_39 AC 314 ms
109,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import types

_atcoder_code = """
# Python port of AtCoder Library.

__version__ = '0.0.1'
"""

atcoder = types.ModuleType('atcoder')
exec(_atcoder_code, atcoder.__dict__)

_atcoder_fenwicktree_code = """
import typing


class FenwickTree:
    '''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''

    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n

    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        return self._sum(right) - self._sum(left)

    def _sum(self, r: int) -> typing.Any:
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r

        return s
"""

atcoder.fenwicktree = types.ModuleType('atcoder.fenwicktree')
exec(_atcoder_fenwicktree_code, atcoder.fenwicktree.__dict__)
FenwickTree = atcoder.fenwicktree.FenwickTree

# from atcoder.fenwicktree import FenwickTree
from collections import deque

T = int(input())

def solve(n, P):
    ft = FenwickTree(n+1)
    ans = deque()
    cnt = 0
    for p in P:
        s = ft.sum(0, p)
        g = ft.sum(p+1, n+1)
        if s < g:
            ans.appendleft(p)
            cnt += s
        elif s > g:
            ans.append(p)
            cnt += g
        else:
            if len(ans) == 0:
                ans.appendleft(p)
                cnt += s
            else:
                if p < ans[0]:
                    ans.appendleft(p)
                    cnt += s
                else:
                    ans.append(p)
                    cnt += g
        ft.add(p, 1)
    
    print(cnt)
    print(*ans)

for _ in range(T):
    n = int(input())
    P = list(map(int, input().split()))
    solve(n, P)
0