結果

問題 No.2248 max(C)-min(C)
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-07-15 04:35:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 287 ms / 3,000 ms
コード長 939 bytes
コンパイル時間 5,129 ms
コンパイル使用メモリ 314,032 KB
実行使用メモリ 18,220 KB
最終ジャッジ日時 2024-09-16 13:05:38
合計ジャッジ時間 12,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 164 ms
16,504 KB
testcase_19 AC 23 ms
6,940 KB
testcase_20 AC 183 ms
18,220 KB
testcase_21 AC 177 ms
17,324 KB
testcase_22 AC 125 ms
13,864 KB
testcase_23 AC 81 ms
9,868 KB
testcase_24 AC 33 ms
6,940 KB
testcase_25 AC 170 ms
16,804 KB
testcase_26 AC 149 ms
15,520 KB
testcase_27 AC 169 ms
16,820 KB
testcase_28 AC 18 ms
6,944 KB
testcase_29 AC 156 ms
15,936 KB
testcase_30 AC 66 ms
8,672 KB
testcase_31 AC 187 ms
18,216 KB
testcase_32 AC 37 ms
6,940 KB
testcase_33 AC 60 ms
7,936 KB
testcase_34 AC 185 ms
18,084 KB
testcase_35 AC 187 ms
18,088 KB
testcase_36 AC 187 ms
18,088 KB
testcase_37 AC 98 ms
11,064 KB
testcase_38 AC 163 ms
18,220 KB
testcase_39 AC 161 ms
18,220 KB
testcase_40 AC 168 ms
18,160 KB
testcase_41 AC 139 ms
16,264 KB
testcase_42 AC 162 ms
18,216 KB
testcase_43 AC 144 ms
16,636 KB
testcase_44 AC 163 ms
18,084 KB
testcase_45 AC 127 ms
15,292 KB
testcase_46 AC 68 ms
9,672 KB
testcase_47 AC 161 ms
18,088 KB
testcase_48 AC 182 ms
18,216 KB
testcase_49 AC 284 ms
18,212 KB
testcase_50 AC 284 ms
18,212 KB
testcase_51 AC 287 ms
18,216 KB
testcase_52 AC 277 ms
18,216 KB
testcase_53 AC 42 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define db double
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
	int n;cin>>n;
	vc<int>a(n),b(n); rep(i,n)cin>>a[i]; rep(i,n)cin>>b[i];
	rep(i,n)if(a[i]>b[i])swap(a[i],b[i]);
	vc v(n,vc<int>(3));
	rep(i,n){
		v[i][0]=b[i];
		v[i][1]=(a[i]+b[i])/2;
		v[i][2]=a[i];
	}
	int mn=1e9;
	pque<pp>q;
	rep(i,n)q.push({v[i][0],i});
	rep(i,n)mn=min(mn,v[i][0]);
	int ans=2e9;
	vc<int>now(n,0);
	while(q.size()){
		auto [a,t]=q.top(); q.pop();
		ans=min(ans,a-mn);
		if(now[t]==2)break;
		int x=v[t][now[t]+1]; now[t]++;
		q.push({x,t});
		mn=min(mn,x);
	}
	cout<<ans;
}
	
0