結果

問題 No.2248 max(C)-min(C)
ユーザー 沙耶花沙耶花
提出日時 2023-03-17 21:38:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 813 ms / 3,000 ms
コード長 789 bytes
コンパイル時間 4,598 ms
コンパイル使用メモリ 272,496 KB
実行使用メモリ 20,336 KB
最終ジャッジ日時 2024-09-18 10:27:35
合計ジャッジ時間 22,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 4 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 5 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 425 ms
17,020 KB
testcase_19 AC 41 ms
5,376 KB
testcase_20 AC 495 ms
18,924 KB
testcase_21 AC 459 ms
18,204 KB
testcase_22 AC 288 ms
13,640 KB
testcase_23 AC 170 ms
9,952 KB
testcase_24 AC 61 ms
6,944 KB
testcase_25 AC 447 ms
18,120 KB
testcase_26 AC 376 ms
16,028 KB
testcase_27 AC 444 ms
17,576 KB
testcase_28 AC 32 ms
6,940 KB
testcase_29 AC 390 ms
16,324 KB
testcase_30 AC 130 ms
8,672 KB
testcase_31 AC 503 ms
19,452 KB
testcase_32 AC 70 ms
6,944 KB
testcase_33 AC 120 ms
8,244 KB
testcase_34 AC 505 ms
19,044 KB
testcase_35 AC 527 ms
19,512 KB
testcase_36 AC 530 ms
20,028 KB
testcase_37 AC 224 ms
11,804 KB
testcase_38 AC 641 ms
19,200 KB
testcase_39 AC 642 ms
19,344 KB
testcase_40 AC 647 ms
19,256 KB
testcase_41 AC 519 ms
16,604 KB
testcase_42 AC 634 ms
20,240 KB
testcase_43 AC 542 ms
17,548 KB
testcase_44 AC 646 ms
19,376 KB
testcase_45 AC 446 ms
15,440 KB
testcase_46 AC 202 ms
9,676 KB
testcase_47 AC 663 ms
19,696 KB
testcase_48 AC 448 ms
19,436 KB
testcase_49 AC 813 ms
19,632 KB
testcase_50 AC 798 ms
20,336 KB
testcase_51 AC 800 ms
19,556 KB
testcase_52 AC 800 ms
19,092 KB
testcase_53 AC 80 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001


int main(){
	
	int n;
	cin>>n;
	
	vector<pair<int,int>> p;
	vector<int> a(n),b(n);
	rep(i,n)cin>>a[i];
	rep(i,n)cin>>b[i];
	rep(i,n){
		p.emplace_back(a[i],i);
		p.emplace_back(b[i],i);
		p.emplace_back((a[i]+b[i])/2,i);
	}
	
	sort(p.begin(),p.end());
	map<int,int> mp;
	int l = 0;
	int ans = Inf32;
	rep(i,p.size()){
		mp[p[i].second]++;
		while(mp.size()==n){
			if(mp[p[l].second]>1){
				mp[p[l].second]--;
				l++;
			}
			else break;
		}
		if(mp.size()==n)ans = min(ans,p[i].first-  p[l].first);
	}
	cout<<ans<<endl;
	
	return 0;
}
0