結果

問題 No.2665 Minimize Inversions of Deque
ユーザー 👑 p-adicp-adic
提出日時 2023-12-30 13:28:15
言語 cLay
(20240714-1)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 2,710 ms
コンパイル使用メモリ 179,296 KB
実行使用メモリ 27,204 KB
最終ジャッジ日時 2024-09-27 19:07:04
合計ジャッジ時間 6,692 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 23 ms
8,388 KB
testcase_02 AC 24 ms
6,940 KB
testcase_03 AC 25 ms
6,940 KB
testcase_04 AC 25 ms
6,944 KB
testcase_05 AC 23 ms
6,940 KB
testcase_06 AC 27 ms
8,004 KB
testcase_07 AC 27 ms
8,388 KB
testcase_08 AC 27 ms
8,012 KB
testcase_09 AC 27 ms
8,012 KB
testcase_10 AC 26 ms
8,388 KB
testcase_11 AC 26 ms
8,008 KB
testcase_12 AC 25 ms
7,884 KB
testcase_13 AC 25 ms
6,948 KB
testcase_14 AC 24 ms
6,944 KB
testcase_15 AC 24 ms
7,880 KB
testcase_16 AC 25 ms
8,008 KB
testcase_17 AC 24 ms
8,132 KB
testcase_18 AC 25 ms
7,880 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 3 ms
6,944 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 3 ms
8,000 KB
testcase_30 AC 65 ms
23,680 KB
testcase_31 AC 53 ms
14,336 KB
testcase_32 AC 53 ms
14,592 KB
testcase_33 AC 63 ms
21,704 KB
testcase_34 AC 55 ms
12,032 KB
testcase_35 AC 71 ms
27,204 KB
testcase_36 AC 63 ms
26,952 KB
testcase_37 AC 57 ms
14,788 KB
testcase_38 AC 68 ms
19,840 KB
testcase_39 AC 80 ms
26,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//実際に列を比較するO(N log N)解法
ll@T;rep(T){ll@N,a=0;list<ll>A;list<ll>B;list<ll>C;fenwick<ll>t;t.malloc(N+1,1);rep(i,N){ll@P,c=t.range(0,P);if(c>i-c||A.empty())a+=i-c,A.push_back(P),B.push_back(P),C.push_back(P);else if(c<i-c) a+=c,A.push_front(P),B.push_front(P),C.push_front(P);else{B.push_front(P),C.push_back(P);if(B<C)a+=c,A.push_front(P),C.pop_back(),C.push_front(P);else a+=i-c,A.push_back(P),B.pop_front(),B.push_back(P);}t.add(P,1);}wt(a);auto j=A.begin(),e=A.end();while(j!=e)wtSp(*j++);wt("");}
0