結果

問題 No.2248 max(C)-min(C)
ユーザー HIcoderHIcoder
提出日時 2023-07-12 22:38:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 509 ms / 3,000 ms
コード長 1,974 bytes
コンパイル時間 1,473 ms
コンパイル使用メモリ 116,672 KB
実行使用メモリ 36,216 KB
最終ジャッジ日時 2024-09-14 11:32:10
合計ジャッジ時間 16,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 6 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 3 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 5 ms
5,376 KB
testcase_18 AC 421 ms
31,608 KB
testcase_19 AC 43 ms
7,016 KB
testcase_20 AC 494 ms
36,084 KB
testcase_21 AC 475 ms
34,576 KB
testcase_22 AC 325 ms
26,944 KB
testcase_23 AC 197 ms
17,104 KB
testcase_24 AC 65 ms
9,236 KB
testcase_25 AC 448 ms
33,460 KB
testcase_26 AC 396 ms
30,164 KB
testcase_27 AC 441 ms
33,312 KB
testcase_28 AC 34 ms
6,352 KB
testcase_29 AC 415 ms
30,656 KB
testcase_30 AC 151 ms
15,368 KB
testcase_31 AC 504 ms
35,952 KB
testcase_32 AC 79 ms
9,780 KB
testcase_33 AC 136 ms
12,980 KB
testcase_34 AC 504 ms
35,956 KB
testcase_35 AC 504 ms
36,084 KB
testcase_36 AC 509 ms
36,084 KB
testcase_37 AC 245 ms
20,296 KB
testcase_38 AC 484 ms
35,960 KB
testcase_39 AC 483 ms
35,952 KB
testcase_40 AC 482 ms
35,956 KB
testcase_41 AC 405 ms
31,156 KB
testcase_42 AC 484 ms
36,216 KB
testcase_43 AC 423 ms
33,072 KB
testcase_44 AC 484 ms
36,088 KB
testcase_45 AC 364 ms
29,432 KB
testcase_46 AC 177 ms
16,836 KB
testcase_47 AC 486 ms
35,960 KB
testcase_48 AC 265 ms
35,956 KB
testcase_49 AC 501 ms
35,956 KB
testcase_50 AC 503 ms
35,956 KB
testcase_51 AC 482 ms
36,084 KB
testcase_52 AC 497 ms
36,216 KB
testcase_53 AC 61 ms
9,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<algorithm>
#include<vector>
#include<string>
#include<set>
#include<map>
#include<numeric>
#include<queue>
#include<cmath>
using namespace std;
typedef long long ll;
const ll INF=1LL<<55;
typedef pair<ll,ll> P;
typedef pair<ll,P> PP;

const ll MOD=998244353;
const double PI=acos(-1);


int main(){
    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<vector<ll>> C(N,vector<ll>(4));

    for(int i=0;i<N;i++){
        if(A[i]>B[i]) swap(A[i],B[i]);
        //A[i]<=B[i]
    }

    //C[i][0]<=C[i][1]<=C[i][2]
    for(int i=0;i<N;i++){
        C[i][0]=A[i];
        C[i][1]=(A[i]+B[i])/2;
        C[i][2]=B[i];
        C[i][3]=INF;
    }

    vector<ll> mini;
    for(int i=0;i<N;i++){
        for(int j=0;j<3;j++){
            mini.push_back(C[i][j]);
        }
    }

    sort(mini.begin(),mini.end());//C[i][j]が小さい順に

    priority_queue<PP,vector<PP>,greater<PP>> pq;
    for(int i=0;i<N;i++){
        //C[i][0]の値, index, 今見ている一つ前のインデックス
        pq.push(make_pair(-INF,make_pair(i,-1)));
    }

    ll ans=INF;

    ll nowmaxi=-INF;//現状,出ている値の最大値

    for(ll e:mini){//C[i][j]が小さい順
        ll nowmini=e;

        /*
        pq.top().first<nowmini である限り,
        つまり,nowmini より小さい値が
        queueにあるかぎり,pqから取り出し続ける
        */
        while(!pq.empty() && pq.top().first< nowmini){
            
            auto [v,p]=pq.top();
            pq.pop();
            p.second++;
            if(p.second<4){
                //p.second=0,1,2
                v=C[p.first][p.second];
                pq.push(make_pair(v,p));

                nowmaxi=max(nowmaxi,v);
            }
            
          
        }

        ans=min(ans,nowmaxi-nowmini);
    }

    cout<<ans<<endl;

    

}
0