結果

問題 No.2665 Minimize Inversions of Deque
ユーザー 👑 p-adicp-adic
提出日時 2023-12-30 10:10:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,069 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,960 KB
最終ジャッジ日時 2024-09-27 19:06:57
合計ジャッジ時間 23,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 647 ms
10,752 KB
testcase_02 AC 688 ms
10,752 KB
testcase_03 AC 634 ms
10,752 KB
testcase_04 AC 622 ms
10,752 KB
testcase_05 AC 638 ms
10,752 KB
testcase_06 AC 632 ms
10,752 KB
testcase_07 AC 619 ms
10,752 KB
testcase_08 AC 623 ms
10,752 KB
testcase_09 AC 644 ms
10,752 KB
testcase_10 AC 645 ms
10,880 KB
testcase_11 AC 638 ms
10,752 KB
testcase_12 AC 633 ms
10,752 KB
testcase_13 AC 613 ms
10,752 KB
testcase_14 AC 630 ms
10,752 KB
testcase_15 AC 608 ms
10,752 KB
testcase_16 AC 634 ms
10,752 KB
testcase_17 AC 618 ms
10,752 KB
testcase_18 AC 636 ms
10,752 KB
testcase_19 AC 113 ms
10,880 KB
testcase_20 AC 43 ms
11,264 KB
testcase_21 AC 43 ms
11,136 KB
testcase_22 AC 43 ms
11,136 KB
testcase_23 AC 46 ms
11,392 KB
testcase_24 AC 46 ms
11,136 KB
testcase_25 AC 46 ms
11,264 KB
testcase_26 AC 43 ms
11,136 KB
testcase_27 AC 43 ms
11,264 KB
testcase_28 AC 43 ms
11,392 KB
testcase_29 AC 44 ms
11,392 KB
testcase_30 AC 921 ms
28,616 KB
testcase_31 AC 834 ms
20,836 KB
testcase_32 AC 862 ms
23,612 KB
testcase_33 AC 927 ms
26,412 KB
testcase_34 AC 847 ms
18,900 KB
testcase_35 AC 923 ms
29,472 KB
testcase_36 AC 1,069 ms
29,600 KB
testcase_37 AC 843 ms
20,252 KB
testcase_38 AC 938 ms
24,880 KB
testcase_39 AC 934 ms
29,960 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