結果

問題 No.2665 Minimize Inversions of Deque
ユーザー askr58askr58
提出日時 2024-03-08 21:37:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 2,952 ms
コンパイル使用メモリ 252,872 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-03-08 21:37:35
合計ジャッジ時間 9,271 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 131 ms
6,676 KB
testcase_02 AC 125 ms
6,676 KB
testcase_03 AC 120 ms
6,676 KB
testcase_04 AC 119 ms
6,676 KB
testcase_05 AC 119 ms
6,676 KB
testcase_06 AC 119 ms
6,676 KB
testcase_07 AC 119 ms
6,676 KB
testcase_08 AC 143 ms
6,676 KB
testcase_09 AC 117 ms
6,676 KB
testcase_10 AC 118 ms
6,676 KB
testcase_11 AC 118 ms
6,676 KB
testcase_12 AC 118 ms
6,676 KB
testcase_13 AC 118 ms
6,676 KB
testcase_14 AC 118 ms
6,676 KB
testcase_15 AC 120 ms
6,676 KB
testcase_16 AC 119 ms
6,676 KB
testcase_17 AC 118 ms
6,676 KB
testcase_18 AC 118 ms
6,676 KB
testcase_19 AC 19 ms
6,676 KB
testcase_20 AC 4 ms
6,676 KB
testcase_21 AC 4 ms
6,676 KB
testcase_22 AC 4 ms
6,676 KB
testcase_23 AC 4 ms
6,676 KB
testcase_24 AC 4 ms
6,676 KB
testcase_25 AC 4 ms
6,676 KB
testcase_26 AC 4 ms
6,676 KB
testcase_27 AC 4 ms
6,676 KB
testcase_28 AC 4 ms
6,676 KB
testcase_29 AC 4 ms
6,676 KB
testcase_30 AC 108 ms
6,784 KB
testcase_31 AC 100 ms
6,676 KB
testcase_32 AC 103 ms
6,676 KB
testcase_33 AC 106 ms
6,676 KB
testcase_34 AC 100 ms
6,676 KB
testcase_35 AC 105 ms
7,040 KB
testcase_36 AC 105 ms
7,040 KB
testcase_37 AC 99 ms
6,676 KB
testcase_38 AC 103 ms
6,676 KB
testcase_39 AC 107 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;

struct segt{
	int sz;
	vector<int> nodes;
	
	segt(int n){
		sz=1;
		while(sz<n)sz*=2;
		nodes.resize(sz*2);
		
	}
	
	void add(int p){
		p+=sz;
		nodes[p]=1;
		while(p>1){
			p>>=1;
			nodes[p]=nodes[2*p]+nodes[2*p+1];
		}
	}
	
	int get(int l,int r){
		l+=sz;
		r+=sz;
		int res=0;
		while(l<r){
			if(l&1)res+=nodes[l++];
			if(r&1)res+=nodes[--r];
			l>>=1;r>>=1;
		}
		return res;
	}
};
int main(){
	int t;
	cin>>t;
	while(t--){
		int n;
		cin>>n;
		vector<int> p(n);
		for(int i=0;i<n;i++)cin>>p[i];
		for(int i=0;i<n;i++)p[i]--;
		deque<int> deq;
		segt st(n);
		ll score=0;
		for(int i=0;i<n;i++){
			int t=st.get(0,p[i]);
			if(t<i-t){
				deq.push_front(p[i]+1);
				score+=t;
			}else if(t==i-t){
				if(p[i]<deq.front())deq.push_front(p[i]+1);
				else deq.push_back(p[i]+1);
				score+=t;
			}else{
				deq.push_back(p[i]+1);
				score+=i-t;
			}
			st.add(p[i]);
		}
		cout<<score<<endl;
		for(int i=0;i<n;i++){
			cout<<deq[i];
			if(i<n-1)cout<<" ";
			else cout<<endl;
		}
	}


}
0