結果

問題 No.2248 max(C)-min(C)
ユーザー pointNpointN
提出日時 2023-03-17 22:06:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 244 ms / 3,000 ms
コード長 1,423 bytes
コンパイル時間 1,361 ms
コンパイル使用メモリ 139,872 KB
実行使用メモリ 23,048 KB
最終ジャッジ日時 2024-09-18 11:09:35
合計ジャッジ時間 9,742 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 2 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 197 ms
14,848 KB
testcase_19 AC 28 ms
5,940 KB
testcase_20 AC 229 ms
23,044 KB
testcase_21 AC 214 ms
22,760 KB
testcase_22 AC 148 ms
13,672 KB
testcase_23 AC 96 ms
8,828 KB
testcase_24 AC 39 ms
6,104 KB
testcase_25 AC 209 ms
22,628 KB
testcase_26 AC 182 ms
14,120 KB
testcase_27 AC 202 ms
22,596 KB
testcase_28 AC 22 ms
5,376 KB
testcase_29 AC 189 ms
14,332 KB
testcase_30 AC 77 ms
8,564 KB
testcase_31 AC 227 ms
22,916 KB
testcase_32 AC 44 ms
6,036 KB
testcase_33 AC 72 ms
8,600 KB
testcase_34 AC 228 ms
23,048 KB
testcase_35 AC 224 ms
22,916 KB
testcase_36 AC 230 ms
23,044 KB
testcase_37 AC 120 ms
13,356 KB
testcase_38 AC 207 ms
22,916 KB
testcase_39 AC 203 ms
22,916 KB
testcase_40 AC 209 ms
22,916 KB
testcase_41 AC 172 ms
14,524 KB
testcase_42 AC 199 ms
22,920 KB
testcase_43 AC 180 ms
22,552 KB
testcase_44 AC 211 ms
23,044 KB
testcase_45 AC 153 ms
14,032 KB
testcase_46 AC 86 ms
8,780 KB
testcase_47 AC 208 ms
23,044 KB
testcase_48 AC 175 ms
23,044 KB
testcase_49 AC 244 ms
22,916 KB
testcase_50 AC 232 ms
22,916 KB
testcase_51 AC 228 ms
22,920 KB
testcase_52 AC 223 ms
22,916 KB
testcase_53 AC 37 ms
6,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <cmath>
#include <iomanip>
#include <stack>
#include <queue>
#include <numeric>
#include <map>
#include <unordered_map>
#include <set>
#include <fstream>
#include <chrono>
#include <random>
#include <bitset>
//#include <atcoder/all>
#define rep(i,n) for(int i=0;i<(n);i++)
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) ((int)(x).size())
#define pb push_back
using ll = long long;
using namespace std;
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 (b<a) { a=b; return 1; } return 0; }
ll gcd(ll a, ll b) {return b?gcd(b,a%b):a;}
ll lcm(ll a, ll b) {return a/gcd(a,b)*b;}

int main(){
  int N; cin >> N;
  vector<ll> A(N);
  vector<ll> B(N);
  rep(i,N) cin >> A[i];
  rep(i,N) cin >> B[i];
  vector<pair<ll,int>> V;
  rep(i,N){
    V.pb({A[i],i});
    V.pb({B[i],i});
    V.pb({(A[i]+B[i])/2,i});
  }
  sort(all(V));
  ll ans = 1LL<<60;
  vector<int> cnt(N,0);
  int c = 0;
  ll lo = 0, hi = 0;
  int l=0,r=0;
  for(;r<sz(V);r++){
    hi = V[r].first;
    cnt[V[r].second]++;
    if(cnt[V[r].second]==1) c++;
    while(c==N && cnt[V[l].second]>1){
      cnt[V[l].second]--;
      l++;
      lo = V[l].first;
    }
    if(c==N) chmin(ans,hi-lo);
  }
  cout << ans << endl;
  return 0;
}
0