結果

問題 No.2665 Minimize Inversions of Deque
ユーザー rlangevinrlangevin
提出日時 2024-03-08 21:28:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,698 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-09-29 18:58:07
合計ジャッジ時間 10,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 247 ms
84,700 KB
testcase_02 AC 258 ms
85,144 KB
testcase_03 AC 223 ms
85,120 KB
testcase_04 AC 230 ms
84,816 KB
testcase_05 AC 210 ms
84,080 KB
testcase_06 AC 218 ms
84,352 KB
testcase_07 AC 234 ms
83,936 KB
testcase_08 AC 221 ms
84,212 KB
testcase_09 AC 251 ms
83,864 KB
testcase_10 AC 213 ms
83,948 KB
testcase_11 AC 227 ms
83,880 KB
testcase_12 AC 238 ms
84,352 KB
testcase_13 AC 234 ms
83,944 KB
testcase_14 AC 224 ms
84,460 KB
testcase_15 AC 225 ms
84,324 KB
testcase_16 AC 243 ms
84,096 KB
testcase_17 AC 240 ms
84,480 KB
testcase_18 AC 247 ms
83,988 KB
testcase_19 AC 150 ms
78,436 KB
testcase_20 AC 95 ms
77,312 KB
testcase_21 AC 105 ms
77,272 KB
testcase_22 AC 87 ms
77,312 KB
testcase_23 AC 88 ms
77,184 KB
testcase_24 AC 96 ms
77,312 KB
testcase_25 AC 90 ms
77,092 KB
testcase_26 AC 98 ms
77,056 KB
testcase_27 AC 99 ms
77,184 KB
testcase_28 AC 88 ms
76,928 KB
testcase_29 AC 87 ms
76,928 KB
testcase_30 AC 268 ms
103,040 KB
testcase_31 AC 250 ms
91,648 KB
testcase_32 AC 262 ms
97,720 KB
testcase_33 AC 259 ms
99,624 KB
testcase_34 AC 247 ms
91,908 KB
testcase_35 AC 236 ms
107,136 KB
testcase_36 AC 229 ms
107,136 KB
testcase_37 AC 252 ms
90,044 KB
testcase_38 AC 272 ms
97,024 KB
testcase_39 AC 264 ms
106,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

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

    def get(self, k):
        k += 1
        x, r = 0, 1
        while r < self._n:
            r <<= 1
        len = r
        while len:
            if x + len - 1 < self._n:
                if self.data[x + len - 1] < k:
                    k -= self.data[x + len - 1]
                    x += len
            len >>= 1
        return x

    def __str__(self):
        temp = []
        for i in range(self._n):
            temp.append(str(self.sum(i, i + 1)))
        return ' '.join(temp)


from collections import *
Q = int(input())
for _ in range(Q):
    N = int(input())
    T = Fenwick_Tree(N)
    P = list(map(int, input().split()))
    ans = deque()
    v = 0
    for i in range(N):
        p = P[i] - 1
        L = T.sum(0, p)
        R = T.sum(p+1, N)
        if L < R:
            ans.appendleft(p+1)
            v += L
        elif L > R:
            ans.append(p+1)
            v += R
        elif len(ans) == 0:
            ans.append(p+1)
            v += L
        elif ans[0]-1 < p:
            ans.append(p+1)
            v += L
        else:
            ans.appendleft(p+1)
            v += L
        T.add(p, 1)
    print(v)
    print(*ans)
0