結果

問題 No.2665 Minimize Inversions of Deque
ユーザー PNJPNJ
提出日時 2024-03-08 22:17:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 1,160 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 108,116 KB
最終ジャッジ日時 2024-09-29 19:48:35
合計ジャッジ時間 9,878 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,508 KB
testcase_01 AC 285 ms
78,624 KB
testcase_02 AC 296 ms
78,344 KB
testcase_03 AC 238 ms
77,580 KB
testcase_04 AC 244 ms
77,776 KB
testcase_05 AC 235 ms
78,804 KB
testcase_06 AC 236 ms
77,644 KB
testcase_07 AC 239 ms
77,700 KB
testcase_08 AC 233 ms
78,020 KB
testcase_09 AC 236 ms
77,532 KB
testcase_10 AC 244 ms
77,684 KB
testcase_11 AC 234 ms
78,040 KB
testcase_12 AC 238 ms
78,128 KB
testcase_13 AC 235 ms
78,076 KB
testcase_14 AC 247 ms
78,636 KB
testcase_15 AC 242 ms
77,900 KB
testcase_16 AC 231 ms
77,548 KB
testcase_17 AC 236 ms
78,452 KB
testcase_18 AC 236 ms
77,732 KB
testcase_19 AC 129 ms
78,108 KB
testcase_20 AC 82 ms
77,336 KB
testcase_21 AC 79 ms
77,096 KB
testcase_22 AC 70 ms
77,100 KB
testcase_23 AC 69 ms
77,028 KB
testcase_24 AC 76 ms
77,352 KB
testcase_25 AC 70 ms
76,888 KB
testcase_26 AC 79 ms
77,512 KB
testcase_27 AC 77 ms
77,444 KB
testcase_28 AC 70 ms
77,116 KB
testcase_29 AC 68 ms
77,092 KB
testcase_30 AC 221 ms
104,200 KB
testcase_31 AC 210 ms
91,168 KB
testcase_32 AC 221 ms
93,836 KB
testcase_33 AC 220 ms
101,968 KB
testcase_34 AC 205 ms
90,172 KB
testcase_35 AC 202 ms
108,116 KB
testcase_36 AC 193 ms
108,076 KB
testcase_37 AC 216 ms
93,116 KB
testcase_38 AC 220 ms
98,268 KB
testcase_39 AC 239 ms
107,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
class BIT:
    # 長さN+1の配列を初期化
    def __init__(self, N):
        self.size = N
        self.bit = [0]*(N+1)

    # i番目までの和を求める
    def sum(self, i):
        if i == 0:
            return 0
        res = 0
        while i > 0:
            res += self.bit[i] # フェニック木のi番目の値を加算
            i -= -i & i # 最も右にある1の桁を0にする
        return res

    # i番目の値にxを足して更新する
    def add(self, i, x):
        while i <= self.size:
            self.bit[i] += x # フェニック木のi番目にxを足して更新
            i += -i & i # 最も右にある1の桁に1を足す

T = int(input())
for _ in range(T):
  n = int(input())
  P = list(map(int,input().split()))
  bit = BIT(n)
  x = 0
  A = deque([P[0]])
  bit.add(P[0],1)
  for i in range(1,n):
    p = P[i]
    a =  bit.sum(p)
    b = bit.sum(n) - bit.sum(p)
    if a < b:
      A.appendleft(p)
    elif a > b:
      A.append(p)
    else:
      if A[0] < p:
        A.append(p)
      else:
        A.appendleft(P)
    x += min(a,b)
    bit.add(p,1)
  print(x)
  print(*A)
0