結果

問題 No.2665 Minimize Inversions of Deque
ユーザー suisensuisen
提出日時 2023-12-28 22:02:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 108,148 KB
最終ジャッジ日時 2024-09-27 19:05:55
合計ジャッジ時間 11,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,440 KB
testcase_01 AC 286 ms
77,824 KB
testcase_02 AC 370 ms
80,272 KB
testcase_03 AC 256 ms
77,908 KB
testcase_04 AC 264 ms
77,892 KB
testcase_05 AC 262 ms
78,032 KB
testcase_06 AC 267 ms
77,844 KB
testcase_07 AC 261 ms
77,700 KB
testcase_08 AC 263 ms
77,972 KB
testcase_09 AC 255 ms
78,000 KB
testcase_10 AC 260 ms
77,912 KB
testcase_11 AC 262 ms
77,928 KB
testcase_12 AC 261 ms
77,880 KB
testcase_13 AC 256 ms
77,880 KB
testcase_14 AC 266 ms
78,140 KB
testcase_15 AC 260 ms
77,816 KB
testcase_16 AC 264 ms
78,056 KB
testcase_17 AC 276 ms
77,896 KB
testcase_18 AC 260 ms
77,880 KB
testcase_19 AC 144 ms
78,048 KB
testcase_20 AC 100 ms
77,240 KB
testcase_21 AC 97 ms
77,280 KB
testcase_22 AC 93 ms
77,248 KB
testcase_23 AC 78 ms
77,144 KB
testcase_24 AC 91 ms
77,272 KB
testcase_25 AC 84 ms
77,468 KB
testcase_26 AC 101 ms
77,116 KB
testcase_27 AC 91 ms
77,168 KB
testcase_28 AC 82 ms
77,300 KB
testcase_29 AC 79 ms
77,484 KB
testcase_30 AC 266 ms
104,172 KB
testcase_31 AC 249 ms
92,664 KB
testcase_32 AC 254 ms
98,096 KB
testcase_33 AC 258 ms
102,528 KB
testcase_34 AC 244 ms
92,056 KB
testcase_35 AC 287 ms
108,032 KB
testcase_36 AC 206 ms
108,148 KB
testcase_37 AC 248 ms
90,324 KB
testcase_38 AC 250 ms
98,448 KB
testcase_39 AC 262 ms
108,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


t = int(input())
for _ in range(t):
    n = int(input())
    p = list(map(lambda x: int(x) - 1, input().split()))

    ft = [0] * n
    def ft_add(p: int, v: int):
        p += 1
        while p <= n:
            ft[p - 1] += v
            p += -p & p
    def ft_sum(r: int):
        s = 0
        while r:
            s += ft[r - 1]
            r -= -r & r
        return s

    inv = 0
    a = deque()
    for i, v in enumerate(p):
        l = ft_sum(p[i])
        r = i - l
        ft_add(p[i], 1)
        ok_l = l <= r
        ok_r = l >= r
        if ok_l and ok_r:
            if a and a[0] < p[i]:
                a.append(p[i])
            else:
                a.appendleft(p[i])
        elif ok_l:
            a.appendleft(p[i])
        elif ok_r:
            a.append(p[i])
        else:
            assert False
        inv += min(l, r)
    
    ans = list(a)
    
    for i in range(n):
        ans[i] += 1
    
    print(inv)
    print(*ans)
0