結果

問題 No.2248 max(C)-min(C)
ユーザー milanis48663220milanis48663220
提出日時 2023-03-17 21:56:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 449 ms / 3,000 ms
コード長 2,863 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 134,160 KB
実行使用メモリ 78,504 KB
最終ジャッジ日時 2024-09-18 10:49:16
合計ジャッジ時間 15,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 4 ms
6,944 KB
testcase_15 AC 5 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 394 ms
67,308 KB
testcase_19 AC 39 ms
11,412 KB
testcase_20 AC 443 ms
77,180 KB
testcase_21 AC 422 ms
73,260 KB
testcase_22 AC 274 ms
51,920 KB
testcase_23 AC 166 ms
34,328 KB
testcase_24 AC 59 ms
15,552 KB
testcase_25 AC 395 ms
70,496 KB
testcase_26 AC 342 ms
62,112 KB
testcase_27 AC 400 ms
69,952 KB
testcase_28 AC 30 ms
9,848 KB
testcase_29 AC 367 ms
64,472 KB
testcase_30 AC 126 ms
28,088 KB
testcase_31 AC 449 ms
77,288 KB
testcase_32 AC 63 ms
17,384 KB
testcase_33 AC 115 ms
26,068 KB
testcase_34 AC 439 ms
76,904 KB
testcase_35 AC 431 ms
77,244 KB
testcase_36 AC 436 ms
77,532 KB
testcase_37 AC 207 ms
42,372 KB
testcase_38 AC 411 ms
70,888 KB
testcase_39 AC 413 ms
69,076 KB
testcase_40 AC 411 ms
69,012 KB
testcase_41 AC 340 ms
60,344 KB
testcase_42 AC 408 ms
69,360 KB
testcase_43 AC 356 ms
62,680 KB
testcase_44 AC 412 ms
70,048 KB
testcase_45 AC 306 ms
55,492 KB
testcase_46 AC 151 ms
31,912 KB
testcase_47 AC 406 ms
69,552 KB
testcase_48 AC 129 ms
38,892 KB
testcase_49 AC 424 ms
77,184 KB
testcase_50 AC 421 ms
76,752 KB
testcase_51 AC 427 ms
78,504 KB
testcase_52 AC 430 ms
77,052 KB
testcase_53 AC 53 ms
15,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

template<typename T>
vector<vector<T>> vec2d(int n, int m, T v){
    return vector<vector<T>>(n, vector<T>(m, v));
}

template<typename T>
vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){
    return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v)));
}

template<typename T>
void print_vector(vector<T> v, char delimiter=' '){
    if(v.empty()) {
        cout << endl;
        return;
    }
    for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter;
    cout << v.back() << endl;
}

template<typename T>
class Compress{
    public:
    vector<T> data;
    int offset;
    Compress(vector<T> data_, int offset=0): offset(offset){
        data = data_;
        sort(begin(data), end(data));
        data.erase(unique(begin(data), end(data)), end(data));
    };
    int operator[](T x) {
        auto p = lower_bound(data.begin(), data.end(), x);
        assert(x == *p);
        return offset+(p-data.begin());
	}
    T inv(int x){
        return data[x-offset];
    }
    int size(){
        return data.size();
    }
};

const ll inf = 1e18;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n; cin >> n;
    vector<ll> a(n), b(n);
    for(int i = 0; i < n; i++) cin >> a[i];
    for(int i = 0; i < n; i++) cin >> b[i];
    vector<ll> v;
    for(int i = 0; i < n; i++){
        if(a[i] > b[i]) swap(a[i], b[i]);
        v.push_back(a[i]);
        v.push_back(b[i]);
        v.push_back((a[i]+b[i])/2);
    }
    auto cp = Compress<ll>(v);
    int m = cp.size();
    auto indices = vec2d(3, m, vector<int>());
    for(int i = 0; i < n; i++){
        indices[0][cp[a[i]]].push_back(i);
        indices[1][cp[(a[i]+b[i])/2]].push_back(i);
        indices[2][cp[b[i]]].push_back(i);
    }
    ll ans = inf;
    ll mx = *max_element(a.begin(), a.end());
    for(int i = 0; i < m; i++){
        int x = cp.data[i];
        chmin(ans, mx-x);
        for(int idx: indices[0][i]){
            chmax(mx, (a[idx]+b[idx])/2);
        }
        for(int idx: indices[1][i]){
            chmax(mx, b[idx]);
        }
        for(int idx: indices[2][i]){
            chmax(mx, inf);
        }
    }
    cout << ans << endl;
}
0