結果

問題 No.2665 Minimize Inversions of Deque
ユーザー minimumminimum
提出日時 2024-03-08 21:40:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 1,084 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-09-29 19:11:09
合計ジャッジ時間 11,958 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 338 ms
78,604 KB
testcase_02 AC 359 ms
78,288 KB
testcase_03 AC 339 ms
78,336 KB
testcase_04 AC 341 ms
78,880 KB
testcase_05 AC 319 ms
78,748 KB
testcase_06 AC 301 ms
78,500 KB
testcase_07 AC 288 ms
78,304 KB
testcase_08 AC 315 ms
78,712 KB
testcase_09 AC 374 ms
79,060 KB
testcase_10 AC 348 ms
78,648 KB
testcase_11 AC 351 ms
78,768 KB
testcase_12 AC 305 ms
78,124 KB
testcase_13 AC 297 ms
78,576 KB
testcase_14 AC 311 ms
78,900 KB
testcase_15 AC 346 ms
78,428 KB
testcase_16 AC 309 ms
78,224 KB
testcase_17 AC 315 ms
78,384 KB
testcase_18 AC 301 ms
78,432 KB
testcase_19 AC 184 ms
78,312 KB
testcase_20 AC 83 ms
77,296 KB
testcase_21 AC 81 ms
77,056 KB
testcase_22 AC 83 ms
77,076 KB
testcase_23 AC 81 ms
76,988 KB
testcase_24 AC 82 ms
76,976 KB
testcase_25 AC 80 ms
76,856 KB
testcase_26 AC 81 ms
77,300 KB
testcase_27 AC 78 ms
77,092 KB
testcase_28 AC 82 ms
76,912 KB
testcase_29 AC 81 ms
77,100 KB
testcase_30 AC 243 ms
104,576 KB
testcase_31 AC 217 ms
91,524 KB
testcase_32 AC 233 ms
97,928 KB
testcase_33 AC 235 ms
102,008 KB
testcase_34 AC 217 ms
91,684 KB
testcase_35 AC 230 ms
108,156 KB
testcase_36 AC 222 ms
108,136 KB
testcase_37 AC 228 ms
90,528 KB
testcase_38 AC 255 ms
97,824 KB
testcase_39 AC 247 ms
108,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


class FenwickTree:

    def __init__(self, N):
        self.N = N
        self.d = [0] * N
    
    def add(self, p, x):
        assert 0 <= p < self.N
        p += 1
        while p <= self.N:
            self.d[p - 1] += x
            p += p & (-p)
    
    def sum0(self, r):
        s = 0
        while r > 0:
            s += self.d[r - 1]
            r -= r & (-r)
        return s
    
    def get_sum(self, l, r):
        assert 0 <= l <= r <= self.N
        return self.sum0(r) - self.sum0(l)


def solve():
    N = int(input())
    P = list(map(lambda x: x - 1, map(int, input().split())))
    fw = FenwickTree(N)
    dq = deque()
    ans = 0

    for i in range(N):
        l = fw.get_sum(0, P[i])
        r = fw.get_sum(P[i], N)
        fw.add(P[i], 1)

        if l < r:
            dq.appendleft(P[i] + 1)
            ans += l
        elif l > r:
            dq.append(P[i] + 1)
            ans += r
        else:
            if i == 0:
                dq.append(P[i] + 1)
                continue
            top = dq.popleft()
            dq.appendleft(top)
            if P[i] < top:
                dq.appendleft(P[i] + 1)
                ans += l
            else:
                dq.append(P[i] + 1)
                ans += r
    print(ans)
    print(*dq)


T = int(input())
for _ in range(T):
    solve()
0