結果

問題 No.2665 Minimize Inversions of Deque
ユーザー dp_ijkdp_ijk
提出日時 2024-06-22 16:45:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 1,385 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 111,324 KB
最終ジャッジ日時 2024-06-22 16:45:29
合計ジャッジ時間 11,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,132 KB
testcase_01 AC 271 ms
77,804 KB
testcase_02 AC 319 ms
79,536 KB
testcase_03 AC 255 ms
78,480 KB
testcase_04 AC 268 ms
78,848 KB
testcase_05 AC 248 ms
78,180 KB
testcase_06 AC 274 ms
78,460 KB
testcase_07 AC 261 ms
78,524 KB
testcase_08 AC 255 ms
78,040 KB
testcase_09 AC 243 ms
78,188 KB
testcase_10 AC 251 ms
78,676 KB
testcase_11 AC 258 ms
77,828 KB
testcase_12 AC 252 ms
78,744 KB
testcase_13 AC 286 ms
78,708 KB
testcase_14 AC 258 ms
78,388 KB
testcase_15 AC 287 ms
79,032 KB
testcase_16 AC 252 ms
78,744 KB
testcase_17 AC 292 ms
78,352 KB
testcase_18 AC 264 ms
78,152 KB
testcase_19 AC 167 ms
77,896 KB
testcase_20 AC 86 ms
77,416 KB
testcase_21 AC 85 ms
77,348 KB
testcase_22 AC 77 ms
77,428 KB
testcase_23 AC 72 ms
77,176 KB
testcase_24 AC 80 ms
77,504 KB
testcase_25 AC 74 ms
76,972 KB
testcase_26 AC 83 ms
77,312 KB
testcase_27 AC 81 ms
77,596 KB
testcase_28 AC 72 ms
77,116 KB
testcase_29 AC 70 ms
77,300 KB
testcase_30 AC 231 ms
107,072 KB
testcase_31 AC 212 ms
93,956 KB
testcase_32 AC 224 ms
98,428 KB
testcase_33 AC 234 ms
104,388 KB
testcase_34 AC 207 ms
95,252 KB
testcase_35 AC 208 ms
111,324 KB
testcase_36 AC 200 ms
111,272 KB
testcase_37 AC 210 ms
92,344 KB
testcase_38 AC 222 ms
100,916 KB
testcase_39 AC 233 ms
111,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class FenwickTree:
   def __init__(self, iterable):
      self.tree = tree = [0]
      tree.extend(iterable)
      self.data = tree[1:]
      self.N = N = len(tree) - 1
      for i in range(1, N+1):
         if i + (i& -i) <= N:
            tree[i + (i& -i)] += tree[i]

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

   def sum(self, l, r):
      assert 0 <= l <= r <= self.N
      tree = self.tree
      res = 0
      while l < r:
         res += tree[r]
         r &= r-1
      while l > r:
         res -= tree[l]
         l &= l-1
      return res

   def __repr__(self):
      return repr(self.data)

from collections import deque

T = int(input())
for _ in range(T):
   N = int(input())
   P = list(map(lambda x: int(x) - 1, input().split()))
   fw = FenwickTree([0]*N)
   Q = deque()
   inv = 0
   for i, p in enumerate(P):
      xL = fw.sum(0, p)
      xR = i-xL
      if xL > xR:
         Q.append(p)
         inv += xR
      if xL < xR:
         Q.appendleft(p)
         inv += xL
      if xL == xR:
         inv += xL
         if not Q:
            Q.append(p)
         else:
            if Q[0] > p:
               Q.appendleft(p)
            else:
               Q.append(p)
      fw.add(p, 1)

   print(inv)
   print(*(x+1 for x in Q))
0