結果

問題 No.2304 Distinct Elements
ユーザー kmjpkmjp
提出日時 2023-05-12 23:36:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 3,000 ms
コード長 1,775 bytes
コンパイル時間 2,352 ms
コンパイル使用メモリ 210,216 KB
実行使用メモリ 46,464 KB
最終ジャッジ日時 2024-05-06 13:32:52
合計ジャッジ時間 10,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
22,272 KB
testcase_01 AC 13 ms
22,400 KB
testcase_02 AC 13 ms
22,272 KB
testcase_03 AC 14 ms
22,272 KB
testcase_04 AC 199 ms
41,984 KB
testcase_05 AC 238 ms
41,856 KB
testcase_06 AC 204 ms
41,856 KB
testcase_07 AC 209 ms
41,856 KB
testcase_08 AC 207 ms
41,984 KB
testcase_09 AC 91 ms
33,140 KB
testcase_10 AC 82 ms
33,144 KB
testcase_11 AC 82 ms
33,148 KB
testcase_12 AC 84 ms
33,144 KB
testcase_13 AC 82 ms
33,012 KB
testcase_14 AC 16 ms
22,528 KB
testcase_15 AC 15 ms
22,400 KB
testcase_16 AC 14 ms
22,400 KB
testcase_17 AC 14 ms
22,400 KB
testcase_18 AC 14 ms
22,400 KB
testcase_19 AC 14 ms
22,400 KB
testcase_20 AC 13 ms
22,400 KB
testcase_21 AC 15 ms
22,272 KB
testcase_22 AC 14 ms
22,272 KB
testcase_23 AC 13 ms
22,272 KB
testcase_24 AC 13 ms
22,400 KB
testcase_25 AC 14 ms
22,272 KB
testcase_26 AC 14 ms
22,400 KB
testcase_27 AC 14 ms
22,272 KB
testcase_28 AC 12 ms
22,400 KB
testcase_29 AC 149 ms
36,992 KB
testcase_30 AC 23 ms
23,424 KB
testcase_31 AC 128 ms
34,560 KB
testcase_32 AC 70 ms
30,800 KB
testcase_33 AC 19 ms
23,040 KB
testcase_34 AC 68 ms
30,808 KB
testcase_35 AC 75 ms
32,044 KB
testcase_36 AC 18 ms
23,040 KB
testcase_37 AC 61 ms
28,160 KB
testcase_38 AC 203 ms
41,472 KB
testcase_39 AC 211 ms
41,984 KB
testcase_40 AC 134 ms
35,456 KB
testcase_41 AC 69 ms
29,184 KB
testcase_42 AC 200 ms
41,984 KB
testcase_43 AC 207 ms
41,856 KB
testcase_44 AC 63 ms
29,980 KB
testcase_45 AC 56 ms
29,660 KB
testcase_46 AC 46 ms
27,772 KB
testcase_47 AC 15 ms
22,528 KB
testcase_48 AC 14 ms
22,528 KB
testcase_49 AC 201 ms
41,856 KB
testcase_50 AC 209 ms
41,856 KB
testcase_51 AC 203 ms
41,984 KB
testcase_52 AC 255 ms
46,464 KB
testcase_53 AC 187 ms
41,856 KB
testcase_54 AC 213 ms
43,904 KB
testcase_55 AC 200 ms
42,752 KB
testcase_56 AC 200 ms
42,368 KB
testcase_57 AC 179 ms
41,984 KB
testcase_58 AC 183 ms
41,984 KB
testcase_59 AC 197 ms
41,984 KB
testcase_60 AC 14 ms
22,400 KB
testcase_61 AC 13 ms
22,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
int A[202020];
multiset<int> L[202020],R[202020];

int getML(int a) {
	return *L[a].rbegin();
}
int getMR(int a) {
	if(L[a].size()==R[a].size()) return *R[a].begin();
	return *L[a].rbegin();
}

void add(int t,int a) {
	L[t].insert(a);
	int x=*L[t].rbegin();
	L[t].erase(L[t].find(x));
	R[t].insert(x);
	if(R[t].size()>L[t].size()) {
		x=*R[t].begin();
		L[t].insert(x);
		R[t].erase(R[t].find(x));
	}
}

void solve() {
	int i,j,k,l,r,x,y;
	
	cin>>N;
	FOR(i,N) cin>>A[i];
	sort(A,A+N);
	vector<int> s;
	FOR(i,N) {
		add(i,A[i]-i);
		s.push_back(i);
		while(s.size()>=2) {
			x=s.back();
			s.pop_back();
			y=s.back();
			s.pop_back();
			if(getML(y)<getMR(x)) {
				s.push_back(y);
				s.push_back(x);
				break;
			}
			if(L[x].size()<L[y].size()) swap(x,y);
			FORR(a,L[y]) add(x,a);
			FORR(a,R[y]) add(x,a);
			s.push_back(x);
		}
	}
	ll ret=0;
	FORR(a,s) {
		ll b=getML(a);
		
		FORR(v,L[a]) ret+=abs(b-v);
		FORR(v,R[a]) ret+=abs(b-v);
	}
	cout<<ret<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0