結果

問題 No.2665 Minimize Inversions of Deque
ユーザー ニックネームニックネーム
提出日時 2024-03-08 21:22:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 874 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,152 KB
最終ジャッジ日時 2024-09-29 18:56:44
合計ジャッジ時間 21,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 645 ms
10,752 KB
testcase_02 AC 562 ms
10,752 KB
testcase_03 AC 579 ms
10,752 KB
testcase_04 AC 549 ms
10,752 KB
testcase_05 AC 537 ms
10,752 KB
testcase_06 AC 531 ms
10,752 KB
testcase_07 AC 535 ms
10,752 KB
testcase_08 AC 538 ms
10,752 KB
testcase_09 AC 546 ms
10,752 KB
testcase_10 AC 537 ms
10,752 KB
testcase_11 AC 532 ms
10,752 KB
testcase_12 AC 557 ms
10,752 KB
testcase_13 AC 528 ms
10,752 KB
testcase_14 AC 523 ms
10,880 KB
testcase_15 AC 526 ms
10,880 KB
testcase_16 AC 527 ms
10,880 KB
testcase_17 AC 537 ms
10,752 KB
testcase_18 AC 523 ms
10,752 KB
testcase_19 AC 97 ms
10,752 KB
testcase_20 AC 39 ms
11,136 KB
testcase_21 AC 39 ms
11,008 KB
testcase_22 AC 39 ms
11,136 KB
testcase_23 AC 40 ms
11,392 KB
testcase_24 AC 40 ms
11,136 KB
testcase_25 AC 39 ms
11,392 KB
testcase_26 AC 38 ms
11,136 KB
testcase_27 AC 37 ms
11,264 KB
testcase_28 AC 39 ms
11,264 KB
testcase_29 AC 39 ms
11,392 KB
testcase_30 AC 825 ms
28,980 KB
testcase_31 AC 744 ms
19,520 KB
testcase_32 AC 776 ms
19,584 KB
testcase_33 AC 805 ms
25,640 KB
testcase_34 AC 743 ms
16,908 KB
testcase_35 AC 839 ms
31,148 KB
testcase_36 AC 874 ms
31,152 KB
testcase_37 AC 767 ms
19,048 KB
testcase_38 AC 802 ms
25,072 KB
testcase_39 AC 845 ms
30,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self,n):
        self.n = n; self.k = [0]*(n+1)
    def a(self,i,x):
        while i<=self.n: self.k[i] += x; i += i&-i
    def s(self,i):
        t = 0
        while i>0: t += self.k[i]; i -= i&-i
        return t
from collections import deque
for _ in range(int(input())):
    n = int(input()); bit = BIT(n); x = 0; dq = deque()
    for i,v in enumerate(map(int,input().split())):
        c = bit.s(v); bit.a(v,1)
        if c<i-c or c==i-c and dq and v<dq[0]: x += c; dq.appendleft(v)
        else: x += i-c; dq.append(v)
    print(x); print(*dq)
0