結果

問題 No.2248 max(C)-min(C)
ユーザー kotatsugamekotatsugame
提出日時 2023-03-17 22:02:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 537 ms / 3,000 ms
コード長 630 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-09-18 11:01:33
合計ジャッジ時間 12,343 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 226 ms
14,208 KB
testcase_19 AC 27 ms
5,376 KB
testcase_20 AC 265 ms
15,872 KB
testcase_21 AC 246 ms
15,360 KB
testcase_22 AC 161 ms
11,904 KB
testcase_23 AC 102 ms
8,960 KB
testcase_24 AC 39 ms
5,504 KB
testcase_25 AC 232 ms
14,848 KB
testcase_26 AC 204 ms
13,568 KB
testcase_27 AC 227 ms
14,592 KB
testcase_28 AC 21 ms
5,376 KB
testcase_29 AC 210 ms
13,824 KB
testcase_30 AC 80 ms
7,680 KB
testcase_31 AC 258 ms
15,872 KB
testcase_32 AC 45 ms
5,888 KB
testcase_33 AC 74 ms
7,168 KB
testcase_34 AC 261 ms
16,000 KB
testcase_35 AC 261 ms
16,128 KB
testcase_36 AC 259 ms
16,128 KB
testcase_37 AC 125 ms
9,856 KB
testcase_38 AC 426 ms
16,128 KB
testcase_39 AC 415 ms
16,000 KB
testcase_40 AC 415 ms
16,000 KB
testcase_41 AC 329 ms
14,088 KB
testcase_42 AC 416 ms
15,872 KB
testcase_43 AC 342 ms
14,720 KB
testcase_44 AC 408 ms
15,872 KB
testcase_45 AC 295 ms
13,184 KB
testcase_46 AC 127 ms
8,704 KB
testcase_47 AC 411 ms
16,000 KB
testcase_48 AC 262 ms
16,000 KB
testcase_49 AC 514 ms
16,076 KB
testcase_50 AC 528 ms
16,000 KB
testcase_51 AC 509 ms
15,820 KB
testcase_52 AC 537 ms
16,128 KB
testcase_53 AC 58 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
using namespace std;
int N;
int A[2<<17][3];
int id[2<<17];
int main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i][0];
	for(int i=0;i<N;i++)cin>>A[i][1];
	set<pair<int,int> >S;
	for(int i=0;i<N;i++)
	{
		int a=A[i][0],b=A[i][1];
		if(a>b)swap(a,b);
		A[i][0]=a;
		A[i][1]=(a+b)/2;
		A[i][2]=b;
		S.insert(make_pair(a,i));
	}
	int ans=S.rbegin()->first-S.begin()->first;
	while(true)
	{
		pair<int,int>p=*S.begin();
		S.erase(S.begin());
		int i=p.second;
		if(id[i]==2)break;
		id[i]++;
		S.insert(make_pair(A[i][id[i]],i));
		ans=min(ans,S.rbegin()->first-S.begin()->first);
	}
	cout<<ans<<endl;
}
0