結果

問題 No.2248 max(C)-min(C)
ユーザー jianglyjiangly
提出日時 2023-03-22 00:02:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 3,000 ms
コード長 979 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 213,188 KB
実行使用メモリ 18,968 KB
最終ジャッジ日時 2024-09-18 14:34:42
合計ジャッジ時間 8,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 93 ms
12,132 KB
testcase_19 AC 14 ms
6,944 KB
testcase_20 AC 117 ms
18,544 KB
testcase_21 AC 105 ms
17,084 KB
testcase_22 AC 71 ms
11,132 KB
testcase_23 AC 46 ms
7,168 KB
testcase_24 AC 18 ms
6,940 KB
testcase_25 AC 100 ms
17,304 KB
testcase_26 AC 85 ms
11,616 KB
testcase_27 AC 99 ms
17,652 KB
testcase_28 AC 11 ms
6,940 KB
testcase_29 AC 89 ms
11,652 KB
testcase_30 AC 37 ms
7,040 KB
testcase_31 AC 113 ms
18,968 KB
testcase_32 AC 23 ms
6,944 KB
testcase_33 AC 35 ms
6,992 KB
testcase_34 AC 113 ms
18,876 KB
testcase_35 AC 110 ms
17,228 KB
testcase_36 AC 112 ms
17,840 KB
testcase_37 AC 58 ms
10,400 KB
testcase_38 AC 105 ms
17,248 KB
testcase_39 AC 104 ms
17,600 KB
testcase_40 AC 106 ms
18,892 KB
testcase_41 AC 90 ms
11,172 KB
testcase_42 AC 108 ms
17,716 KB
testcase_43 AC 94 ms
17,184 KB
testcase_44 AC 108 ms
17,892 KB
testcase_45 AC 82 ms
11,692 KB
testcase_46 AC 44 ms
7,140 KB
testcase_47 AC 106 ms
17,884 KB
testcase_48 AC 87 ms
18,084 KB
testcase_49 AC 111 ms
17,768 KB
testcase_50 AC 109 ms
17,452 KB
testcase_51 AC 108 ms
17,328 KB
testcase_52 AC 108 ms
18,600 KB
testcase_53 AC 20 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using i64 = long long;

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    
    int N;
    std::cin >> N;
    
    std::vector<int> A(N), B(N);
    for (int i = 0; i < N; i++) {
        std::cin >> A[i];
    }
    for (int i = 0; i < N; i++) {
        std::cin >> B[i];
    }
    
    std::vector<std::tuple<int, int, int>> events;
    int r = 0;
    for (int i = 0; i < N; i++) {
        if (A[i] > B[i]) {
            std::swap(A[i], B[i]);
        }
        r = std::max(r, A[i]);
        events.emplace_back(A[i], 1, (A[i] + B[i]) / 2);
        events.emplace_back((A[i] + B[i]) / 2, 2, B[i]);
        events.emplace_back(B[i], 3, -1);
    }
    
    std::sort(events.begin(), events.end());
    int ans = 1E9;
    for (auto [x, t, y] : events) {
        ans = std::min(ans, r - x);
        if (t == 3) {
            break;
        }
        r = std::max(r, y);
    }
    std::cout << ans << "\n";
    
    return 0;
}
0