結果

問題 No.2248 max(C)-min(C)
ユーザー HIcoderHIcoder
提出日時 2023-07-12 22:32:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 502 ms / 3,000 ms
コード長 2,237 bytes
コンパイル時間 1,584 ms
コンパイル使用メモリ 116,756 KB
実行使用メモリ 36,084 KB
最終ジャッジ日時 2024-09-14 11:25:33
合計ジャッジ時間 17,069 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 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 6 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 428 ms
31,608 KB
testcase_19 AC 43 ms
7,016 KB
testcase_20 AC 502 ms
35,960 KB
testcase_21 AC 466 ms
34,704 KB
testcase_22 AC 323 ms
26,944 KB
testcase_23 AC 191 ms
17,108 KB
testcase_24 AC 65 ms
9,240 KB
testcase_25 AC 444 ms
33,460 KB
testcase_26 AC 383 ms
30,044 KB
testcase_27 AC 436 ms
33,184 KB
testcase_28 AC 34 ms
6,348 KB
testcase_29 AC 397 ms
30,656 KB
testcase_30 AC 148 ms
15,120 KB
testcase_31 AC 494 ms
35,952 KB
testcase_32 AC 75 ms
9,776 KB
testcase_33 AC 134 ms
12,980 KB
testcase_34 AC 476 ms
35,956 KB
testcase_35 AC 482 ms
35,956 KB
testcase_36 AC 477 ms
35,960 KB
testcase_37 AC 239 ms
20,424 KB
testcase_38 AC 465 ms
35,960 KB
testcase_39 AC 452 ms
35,956 KB
testcase_40 AC 483 ms
36,084 KB
testcase_41 AC 391 ms
31,152 KB
testcase_42 AC 474 ms
35,960 KB
testcase_43 AC 411 ms
32,820 KB
testcase_44 AC 475 ms
35,956 KB
testcase_45 AC 368 ms
29,428 KB
testcase_46 AC 175 ms
16,968 KB
testcase_47 AC 472 ms
36,084 KB
testcase_48 AC 265 ms
36,084 KB
testcase_49 AC 494 ms
35,960 KB
testcase_50 AC 493 ms
36,084 KB
testcase_51 AC 490 ms
36,084 KB
testcase_52 AC 493 ms
35,956 KB
testcase_53 AC 62 ms
9,208 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>(5));

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

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

    vector<ll> mini;
    for(int i=0;i<N;i++){
        for(int j=1;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]の値(-INF), index, 今見ているインデックス
        pq.push(make_pair(C[i][0],make_pair(i,0)));
    }

    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){
        //while(pq.top().first< nowmini){
            
            auto [v,p]=pq.top();
            pq.pop();
            p.second++;
            if(p.second<=4){
            v=C[p.first][p.second];
            pq.push(make_pair(v,p));

            nowmaxi=max(nowmaxi,v);
            }
            
           /*
            auto np=pq.top();
            pq.pop();
            np.second.second++;
            
            np.first=C[np.second.first][np.second.second];
            pq.push(np);

            nowmaxi=max(nowmaxi,np.first);
            */   
        }

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

    cout<<ans<<endl;

    

}
0