結果

問題 No.2248 max(C)-min(C)
ユーザー Shreyan RayShreyan Ray
提出日時 2023-03-17 23:06:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 339 ms / 3,000 ms
コード長 2,071 bytes
コンパイル時間 2,568 ms
コンパイル使用メモリ 210,256 KB
実行使用メモリ 36,804 KB
最終ジャッジ日時 2024-09-18 12:12:35
合計ジャッジ時間 12,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 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 2 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 5 ms
5,376 KB
testcase_18 AC 292 ms
23,928 KB
testcase_19 AC 28 ms
7,436 KB
testcase_20 AC 315 ms
36,800 KB
testcase_21 AC 310 ms
36,444 KB
testcase_22 AC 194 ms
22,932 KB
testcase_23 AC 114 ms
13,504 KB
testcase_24 AC 41 ms
8,204 KB
testcase_25 AC 288 ms
36,376 KB
testcase_26 AC 236 ms
23,608 KB
testcase_27 AC 282 ms
36,332 KB
testcase_28 AC 22 ms
5,920 KB
testcase_29 AC 248 ms
23,660 KB
testcase_30 AC 84 ms
13,224 KB
testcase_31 AC 306 ms
36,672 KB
testcase_32 AC 48 ms
8,444 KB
testcase_33 AC 77 ms
12,080 KB
testcase_34 AC 317 ms
36,672 KB
testcase_35 AC 311 ms
36,800 KB
testcase_36 AC 339 ms
36,800 KB
testcase_37 AC 144 ms
20,220 KB
testcase_38 AC 313 ms
36,672 KB
testcase_39 AC 311 ms
36,672 KB
testcase_40 AC 325 ms
36,676 KB
testcase_41 AC 250 ms
23,840 KB
testcase_42 AC 316 ms
36,800 KB
testcase_43 AC 275 ms
36,140 KB
testcase_44 AC 310 ms
36,676 KB
testcase_45 AC 222 ms
23,348 KB
testcase_46 AC 103 ms
13,428 KB
testcase_47 AC 317 ms
36,804 KB
testcase_48 AC 187 ms
36,804 KB
testcase_49 AC 299 ms
36,800 KB
testcase_50 AC 305 ms
36,800 KB
testcase_51 AC 304 ms
36,800 KB
testcase_52 AC 296 ms
36,796 KB
testcase_53 AC 39 ms
8,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define INF (int)1e18
#define f first
#define s second

mt19937_64 RNG(chrono::steady_clock::now().time_since_epoch().count());
const int N = 2e5 + 69;
int a[N], b[N], c[N];
int seg[4*N];
int n;

void Build(int l, int r, int pos){
    if (l==r) {
        seg[pos] = a[l];
        return;
    }
    
    int mid = (l+r)/2;
    Build(l, mid, pos*2);
    Build(mid + 1, r, pos*2 + 1);
    
    seg[pos] = max(seg[pos * 2], seg[pos * 2 + 1]);
}

void Update(int l, int r, int pos, int qp){
    if (l==r){
        seg[pos] = min(a[l], min(b[l], c[l]));
        return;
    }
    
    int mid = (l+r)/2;
    if (qp <= mid) Update(l, mid, pos*2, qp);
    else Update(mid + 1, r, pos*2 + 1, qp);
    
    seg[pos] = max(seg[pos * 2], seg[pos * 2 + 1]);
}

void Solve() 
{
    cin>>n;
    for (int i=1; i<=n; i++)
    cin>>a[i];
    for (int i=1; i<=n; i++){
        cin>>c[i];
        if (a[i] > c[i]) swap(a[i], c[i]);
        b[i] = (a[i] + c[i])/2;
    }
    
    Build(1, n, 1);
    
    vector <pair<int, pair<int, int>>> v;
    
    for (int i=1; i<=n; i++){
        v.push_back({a[i], {i, 1}});
        v.push_back({b[i], {i, 2}});
        v.push_back({c[i], {i, 3}});
    }
    
    sort(v.begin(), v.end());
    int ans = INF;
    for (auto x: v){
        ans = min(seg[1] - x.f, ans);
        if (x.s.s == 1){
            a[x.s.f] = INF;
        } else if (x.s.s == 2){
            b[x.s.f] = INF;
        } else c[x.s.f] = INF;
        
        Update(1, n, 1, x.s.f);
    }
    
    cout<<ans<<"\n";
}

int32_t main() 
{
    auto begin = std::chrono::high_resolution_clock::now();
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int t = 1;
   // cin >> t;
    for(int i = 1; i <= t; i++) 
    {
        //cout << "Case #" << i << ": ";
        Solve();
    }
    auto end = std::chrono::high_resolution_clock::now();
    auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin);
    cerr << "Time measured: " << elapsed.count() * 1e-9 << " seconds.\n"; 
    return 0;
}
0