結果

問題 No.2248 max(C)-min(C)
ユーザー RedstoneGamer22RedstoneGamer22
提出日時 2023-04-10 22:11:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 472 ms / 3,000 ms
コード長 745 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 213,304 KB
実行使用メモリ 17,720 KB
最終ジャッジ日時 2024-10-06 09:12:50
合計ジャッジ時間 17,442 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 5 ms
6,816 KB
testcase_07 AC 5 ms
6,820 KB
testcase_08 AC 5 ms
6,820 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 AC 5 ms
6,816 KB
testcase_15 AC 5 ms
6,820 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 5 ms
6,820 KB
testcase_18 AC 409 ms
15,916 KB
testcase_19 AC 37 ms
6,816 KB
testcase_20 AC 463 ms
17,476 KB
testcase_21 AC 425 ms
16,752 KB
testcase_22 AC 266 ms
14,816 KB
testcase_23 AC 167 ms
9,172 KB
testcase_24 AC 58 ms
6,816 KB
testcase_25 AC 396 ms
16,012 KB
testcase_26 AC 342 ms
16,068 KB
testcase_27 AC 396 ms
15,896 KB
testcase_28 AC 30 ms
6,820 KB
testcase_29 AC 363 ms
14,964 KB
testcase_30 AC 128 ms
8,932 KB
testcase_31 AC 466 ms
17,288 KB
testcase_32 AC 67 ms
6,816 KB
testcase_33 AC 124 ms
7,612 KB
testcase_34 AC 454 ms
17,380 KB
testcase_35 AC 472 ms
17,492 KB
testcase_36 AC 465 ms
17,436 KB
testcase_37 AC 206 ms
10,624 KB
testcase_38 AC 419 ms
17,720 KB
testcase_39 AC 420 ms
17,324 KB
testcase_40 AC 420 ms
17,232 KB
testcase_41 AC 333 ms
15,236 KB
testcase_42 AC 411 ms
17,428 KB
testcase_43 AC 358 ms
16,016 KB
testcase_44 AC 418 ms
17,376 KB
testcase_45 AC 298 ms
15,000 KB
testcase_46 AC 140 ms
9,036 KB
testcase_47 AC 425 ms
17,440 KB
testcase_48 AC 322 ms
17,424 KB
testcase_49 AC 412 ms
17,564 KB
testcase_50 AC 423 ms
17,240 KB
testcase_51 AC 425 ms
17,256 KB
testcase_52 AC 427 ms
17,396 KB
testcase_53 AC 55 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main()
{
    int n; cin >> n;
    vector<int> a(n); for(auto &e : a) cin >> e;
    vector<int> b(n); for(auto &e : b) cin >> e;

    multiset<int> s;
    vector<pair<int, int>> ev;

    for(int i = 0; i < n; i++) {
        int c = (a[i] + b[i]) / 2;
        if(a[i] > b[i]) swap(a[i], b[i]);

        s.insert(a[i]);
        ev.push_back({a[i], c});
        ev.push_back({c, b[i]});
    }

    #define get_dif (*(s.rbegin()) - *(s.begin()))

    int ans = get_dif;

    sort(ev.begin(), ev.end());
    for(auto e : ev) {
        s.erase(s.lower_bound(e.first));
        s.insert(e.second);

        ans = min(ans, get_dif);
    }

    #undef get_dif

    cout << ans << endl;

    return 0;
}
0