結果

問題 No.1597 Matrix Sort
ユーザー trineutrontrineutron
提出日時 2021-07-09 22:14:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 380 ms / 1,500 ms
コード長 782 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 207,896 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 16:49:00
合計ジャッジ時間 9,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 352 ms
6,940 KB
testcase_04 AC 365 ms
6,944 KB
testcase_05 AC 379 ms
6,940 KB
testcase_06 AC 366 ms
6,944 KB
testcase_07 AC 380 ms
6,944 KB
testcase_08 AC 296 ms
6,940 KB
testcase_09 AC 309 ms
6,944 KB
testcase_10 AC 201 ms
6,944 KB
testcase_11 AC 203 ms
6,944 KB
testcase_12 AC 174 ms
6,940 KB
testcase_13 AC 287 ms
6,940 KB
testcase_14 AC 325 ms
6,940 KB
testcase_15 AC 128 ms
6,940 KB
testcase_16 AC 190 ms
6,940 KB
testcase_17 AC 218 ms
6,944 KB
testcase_18 AC 355 ms
6,940 KB
testcase_19 AC 282 ms
6,940 KB
testcase_20 AC 211 ms
6,940 KB
testcase_21 AC 202 ms
6,940 KB
testcase_22 AC 205 ms
6,944 KB
testcase_23 AC 202 ms
6,940 KB
testcase_24 AC 42 ms
6,944 KB
testcase_25 AC 41 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
    int64_t n, k, p;
    cin >> n >> k >> p;
    vector<int64_t> a(n), b(n);
    for (auto &&x : a)
    {
        cin >> x;
    }
    for (auto &&x : b)
    {
        cin >> x;
    }
    sort(a.begin(), a.end());
    sort(b.begin(), b.end());

    auto f = [&](int64_t r)
    {
        int64_t res = 0;
        for (auto &&x : a)
        {
            res += lower_bound(b.begin(), b.end(), r - x) - b.begin();
        }
        return res;
    };

    int64_t l = 0, r = p;
    while (r - l > 1)
    {
        int64_t mid = (l + r) / 2;
        if (f(mid + p) - f(p) + f(mid) < k)
        {
            l = mid;
        }
        else
        {
            r = mid;
        }
    }
    cout << l << endl;
    return 0;
}
0