結果

問題 No.2501 Maximum Inversion Number
ユーザー kotatsugamekotatsugame
提出日時 2023-10-13 21:36:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 1,087 bytes
コンパイル時間 850 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-09-15 17:13:43
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cassert>
using namespace std;
int N,M;
int L[2<<17],R[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int T;cin>>T;
	for(;T--;)
	{
		cin>>N>>M;
		long sL=0,sR=0;
		for(int i=0;i<N;i++)
		{
			cin>>L[i];
			sL+=L[i];
		}
		for(int i=0;i<N;i++)
		{
			cin>>R[i];
			sR+=R[i];
		}
		if(M<sL||sR<M)
		{
			cout<<"-1\n";
			continue;
		}
		int mnl=-1,mnr=1e9;
		while(mnr-mnl>1)
		{
			int mid=(mnl+mnr)/2;
			long s=0;
			for(int i=0;i<N;i++)
			{
				if(mid<L[i])s+=L[i];
				else if(R[i]<mid)s+=R[i];
				else s+=mid;
			}
			if(s>=M)mnr=mid;
			else mnl=mid;
		}
		vector<pair<int,int> >cnt(N);
		long s=0;
		for(int i=0;i<N;i++)
		{
			int now=mnr<L[i]?L[i]:mnr>R[i]?R[i]:mnr;
			cnt[i]=make_pair(now,i);
			s+=now;
		}
		assert(0<=s-M&&s-M<N);
		sort(cnt.begin(),cnt.end());
		long ans=(long)M*(M-1)/2;
		for(int i=cnt.size();i--;)
		{
			int v=cnt[i].first;
			int id=cnt[i].second;
			if(s>M)
			{
				if(L[id]<v)v--,s--;
			}
			ans-=(long)v*(v-1)/2;
		}
		assert(s==M);
		cout<<ans<<"\n";
	}
}
0