結果

問題 No.2248 max(C)-min(C)
ユーザー merom686merom686
提出日時 2023-03-18 00:44:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 3,000 ms
コード長 908 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 210,356 KB
実行使用メモリ 8,776 KB
最終ジャッジ日時 2024-09-18 12:43:54
合計ジャッジ時間 6,828 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,948 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 85 ms
8,032 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 97 ms
8,672 KB
testcase_21 AC 92 ms
8,380 KB
testcase_22 AC 65 ms
6,944 KB
testcase_23 AC 42 ms
6,940 KB
testcase_24 AC 17 ms
6,944 KB
testcase_25 AC 88 ms
8,248 KB
testcase_26 AC 78 ms
7,460 KB
testcase_27 AC 91 ms
8,156 KB
testcase_28 AC 10 ms
6,940 KB
testcase_29 AC 83 ms
7,936 KB
testcase_30 AC 33 ms
6,940 KB
testcase_31 AC 98 ms
8,652 KB
testcase_32 AC 19 ms
6,940 KB
testcase_33 AC 31 ms
6,940 KB
testcase_34 AC 100 ms
8,752 KB
testcase_35 AC 96 ms
8,776 KB
testcase_36 AC 99 ms
8,536 KB
testcase_37 AC 51 ms
6,940 KB
testcase_38 AC 95 ms
8,736 KB
testcase_39 AC 95 ms
8,648 KB
testcase_40 AC 93 ms
8,524 KB
testcase_41 AC 80 ms
7,880 KB
testcase_42 AC 94 ms
8,524 KB
testcase_43 AC 82 ms
7,992 KB
testcase_44 AC 93 ms
8,656 KB
testcase_45 AC 72 ms
7,296 KB
testcase_46 AC 38 ms
6,940 KB
testcase_47 AC 96 ms
8,664 KB
testcase_48 AC 84 ms
8,636 KB
testcase_49 AC 99 ms
8,636 KB
testcase_50 AC 101 ms
8,776 KB
testcase_51 AC 101 ms
8,524 KB
testcase_52 AC 99 ms
8,736 KB
testcase_53 AC 16 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using ll = long long;
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;

    vector<pair<int, int>> p(n * 3);
    for (int i = 0; i < n; i++) {
        int a;
        cin >> a;
        p[i] = { a, i };
    }
    for (int i = 0; i < n; i++) {
        int b;
        cin >> b;
        p[n + i] = { b, i };
        p[n * 2 + i] = { (p[i].first + b) / 2, i };
    }
    sort(p.begin(), p.end());

    vector<int> c(n, 0);
    int r = 1 << 30;
    int k = 0;
    int a1 = 0;
    int i1 = 0;
    for (int i0 = 0; i0 < n * 3; i0++) {
        while (k < n && i1 < n * 3) {
            auto [a, i] = p[i1++];
            a1 = max(a1, a);
            k += c[i]++ == 0;
        }
        if (k < n) break;
        auto [a, i] = p[i0];
        r = min(r, a1 - a);
        k -= --c[i] == 0;
    }
    cout << r << endl;

    return 0;
}
0