結果

問題 No.1597 Matrix Sort
ユーザー nawawannawawan
提出日時 2021-07-09 22:09:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 371 ms / 1,500 ms
コード長 1,026 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 173,764 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 16:38:54
合計ジャッジ時間 8,387 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 317 ms
6,944 KB
testcase_04 AC 335 ms
6,940 KB
testcase_05 AC 364 ms
6,940 KB
testcase_06 AC 356 ms
6,940 KB
testcase_07 AC 371 ms
6,940 KB
testcase_08 AC 254 ms
6,940 KB
testcase_09 AC 291 ms
6,940 KB
testcase_10 AC 201 ms
6,940 KB
testcase_11 AC 155 ms
6,940 KB
testcase_12 AC 144 ms
6,944 KB
testcase_13 AC 262 ms
6,940 KB
testcase_14 AC 300 ms
6,944 KB
testcase_15 AC 120 ms
6,940 KB
testcase_16 AC 179 ms
6,940 KB
testcase_17 AC 205 ms
6,940 KB
testcase_18 AC 324 ms
6,940 KB
testcase_19 AC 236 ms
6,940 KB
testcase_20 AC 192 ms
6,944 KB
testcase_21 AC 189 ms
6,944 KB
testcase_22 AC 192 ms
6,940 KB
testcase_23 AC 189 ms
6,944 KB
testcase_24 AC 50 ms
6,940 KB
testcase_25 AC 48 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int N;
    long long K;
    long long P;
    cin >> N >> K >> P;
    vector<long long> A(N), B(N);
    for(int i = 0; i < N; i++) cin >> A[i];
    for(int i = 0; i < N; i++) cin >> B[i];
    sort(A.begin(), A.end());
    sort(B.begin(), B.end());
    int ub = P, lb = -1;
    while(ub - lb > 1){
        int mid = (ub + lb) / 2;
        long long cnt = 0;
        for(int i = 0; i < N; i++){
            if(mid < A[i]){
                int ind = upper_bound(B.begin(), B.end(), mid + P - A[i]) - lower_bound(B.begin(), B.end(), P - A[i]);
                cnt += ind;
            }
            else{
                int ind = upper_bound(B.begin(), B.end(), mid + P - A[i]) - lower_bound(B.begin(), B.end(), P - A[i]);
                int id = upper_bound(B.begin(), B.end(), mid - A[i]) - B.begin();
                cnt += ind;
                cnt += id;
            }
        }
        if(cnt >= K) ub = mid;
        else lb = mid;
    }
    cout << ub << endl;
}
0