結果

問題 No.2248 max(C)-min(C)
ユーザー lddlinanlddlinan
提出日時 2023-03-17 22:28:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 662 ms / 3,000 ms
コード長 1,793 bytes
コンパイル時間 1,024 ms
コンパイル使用メモリ 96,836 KB
実行使用メモリ 35,652 KB
最終ジャッジ日時 2024-09-18 11:36:37
合計ジャッジ時間 17,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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 3 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 416 ms
31,792 KB
testcase_19 AC 29 ms
6,848 KB
testcase_20 AC 492 ms
35,648 KB
testcase_21 AC 470 ms
33,988 KB
testcase_22 AC 284 ms
25,236 KB
testcase_23 AC 154 ms
16,980 KB
testcase_24 AC 46 ms
8,576 KB
testcase_25 AC 444 ms
32,696 KB
testcase_26 AC 373 ms
29,568 KB
testcase_27 AC 439 ms
32,432 KB
testcase_28 AC 23 ms
6,016 KB
testcase_29 AC 387 ms
30,448 KB
testcase_30 AC 106 ms
14,352 KB
testcase_31 AC 523 ms
35,520 KB
testcase_32 AC 55 ms
9,344 KB
testcase_33 AC 105 ms
13,008 KB
testcase_34 AC 518 ms
35,520 KB
testcase_35 AC 529 ms
35,652 KB
testcase_36 AC 497 ms
35,648 KB
testcase_37 AC 205 ms
19,896 KB
testcase_38 AC 443 ms
31,724 KB
testcase_39 AC 580 ms
31,624 KB
testcase_40 AC 617 ms
31,944 KB
testcase_41 AC 373 ms
28,508 KB
testcase_42 AC 496 ms
31,700 KB
testcase_43 AC 379 ms
28,964 KB
testcase_44 AC 475 ms
31,700 KB
testcase_45 AC 325 ms
26,336 KB
testcase_46 AC 139 ms
15,808 KB
testcase_47 AC 475 ms
31,696 KB
testcase_48 AC 226 ms
16,908 KB
testcase_49 AC 638 ms
35,636 KB
testcase_50 AC 661 ms
35,636 KB
testcase_51 AC 633 ms
35,512 KB
testcase_52 AC 662 ms
35,504 KB
testcase_53 AC 58 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <stack>
#include <algorithm>
#include <array>
#include <unordered_set>
#include <unordered_map>
#include <string>
using namespace std;

bool rcmp(int a, int b) { return a>b; }
typedef long long LL;
typedef struct { int h, i; }RNode;
int as[200004];
int bs[200004];
int cs[200004];
class mypcmp {
public:
    bool operator()(const RNode& a, const RNode& b) {
        return a.h<b.h;
    }
};


#define INF 0x7fffffff
int main() {
    int n, i, h, mh, r, valid, t;
    scanf("%d", &n);
    for (i=0; i<n; i++) scanf("%d", &as[i]);
    for (i=0; i<n; i++) scanf("%d", &bs[i]);
    set<int> hs;
    for (i=0; i<n; i++) {
        if (as[i]>bs[i]) { t=as[i]; as[i]=bs[i]; bs[i]=t; }
        cs[i]=(as[i]+bs[i])/2;
        hs.insert(as[i]);
        hs.insert(bs[i]);
        hs.insert(cs[i]);
    }
    priority_queue<RNode, vector<RNode>, mypcmp> q;
    r = INF;
    mh= INF;
    for (i=0; i<n; i++) {
        q.push({bs[i], i});
        mh=min(mh, bs[i]);
    }
    for (auto it = hs.rbegin(); it!=hs.rend(); it++) {
        h = *it;
        valid=1;
        while(!q.empty()) {
            auto x = q.top();
            if (x.h>h) {
                q.pop();
                i=x.i;
                if (cs[i]<=h) {
                    q.push({cs[i], i});
                    mh = min(mh, cs[i]);
                } else if (as[i]<=h) {
                    q.push({as[i], i});
                    mh = min(mh, as[i]);
                } else {
                    valid=0;
                    break;
                }
            } else break;
        }
        if (valid==0) break;
        r = min(r, h-mh);
    }
    printf("%d\n", r);

    return 0;
}
0