結果

問題 No.2665 Minimize Inversions of Deque
ユーザー 👑 p-adicp-adic
提出日時 2023-12-30 10:10:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 107,936 KB
最終ジャッジ日時 2024-09-27 19:06:14
合計ジャッジ時間 10,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,744 KB
testcase_01 AC 298 ms
77,924 KB
testcase_02 AC 362 ms
79,060 KB
testcase_03 AC 275 ms
77,500 KB
testcase_04 AC 275 ms
77,668 KB
testcase_05 AC 274 ms
77,120 KB
testcase_06 AC 262 ms
77,412 KB
testcase_07 AC 268 ms
77,672 KB
testcase_08 AC 254 ms
76,936 KB
testcase_09 AC 258 ms
77,324 KB
testcase_10 AC 259 ms
77,288 KB
testcase_11 AC 268 ms
77,192 KB
testcase_12 AC 264 ms
77,244 KB
testcase_13 AC 269 ms
77,572 KB
testcase_14 AC 258 ms
77,052 KB
testcase_15 AC 286 ms
77,652 KB
testcase_16 AC 264 ms
76,976 KB
testcase_17 AC 279 ms
77,696 KB
testcase_18 AC 264 ms
77,720 KB
testcase_19 AC 177 ms
78,500 KB
testcase_20 AC 77 ms
76,516 KB
testcase_21 AC 76 ms
76,836 KB
testcase_22 AC 63 ms
75,172 KB
testcase_23 AC 67 ms
76,560 KB
testcase_24 AC 76 ms
76,532 KB
testcase_25 AC 71 ms
76,448 KB
testcase_26 AC 82 ms
76,916 KB
testcase_27 AC 78 ms
76,480 KB
testcase_28 AC 70 ms
76,292 KB
testcase_29 AC 68 ms
76,576 KB
testcase_30 AC 203 ms
104,332 KB
testcase_31 AC 178 ms
90,684 KB
testcase_32 AC 189 ms
96,092 KB
testcase_33 AC 199 ms
100,100 KB
testcase_34 AC 180 ms
90,844 KB
testcase_35 AC 180 ms
107,936 KB
testcase_36 AC 181 ms
107,708 KB
testcase_37 AC 188 ms
90,040 KB
testcase_38 AC 191 ms
97,732 KB
testcase_39 AC 206 ms
107,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,O,R=input,print,range
def A(i,t):
	i+=1
	while i<=N:F[i],i=F[i]+t,i+(i&-i)
def L(r):
	a=0
	i=min(r+1,N)
	while i:a,i=a+F[i],i-(i&-i)
	return a
for t in R(int(I())):
	N,a,X,Y=int(I()),0,[],[]
	P,F=list(map(int,I().split())),[0]*(N+1)
	for i,p in zip(R(N),P):
		c=L(p)
		if c<i-c or not(X or Y)or(i==2*c and X[-1]>p):
			a+=c
			X+=[p]
		else:
			a+=i-c
			Y+=[p]
		A(p,1)
	X.reverse(),O(a),O(*X,*Y)
0