結果

問題 No.1597 Matrix Sort
ユーザー boatmusclesboatmuscles
提出日時 2021-07-09 23:38:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 728 ms / 1,500 ms
コード長 1,212 bytes
コンパイル時間 2,734 ms
コンパイル使用メモリ 109,928 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-01 18:29:47
合計ジャッジ時間 18,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 714 ms
5,376 KB
testcase_04 AC 719 ms
5,376 KB
testcase_05 AC 718 ms
5,376 KB
testcase_06 AC 715 ms
5,376 KB
testcase_07 AC 728 ms
5,376 KB
testcase_08 AC 683 ms
5,376 KB
testcase_09 AC 698 ms
5,376 KB
testcase_10 AC 587 ms
5,376 KB
testcase_11 AC 579 ms
5,376 KB
testcase_12 AC 606 ms
5,376 KB
testcase_13 AC 681 ms
5,376 KB
testcase_14 AC 706 ms
5,376 KB
testcase_15 AC 554 ms
5,376 KB
testcase_16 AC 623 ms
5,376 KB
testcase_17 AC 669 ms
5,376 KB
testcase_18 AC 701 ms
5,376 KB
testcase_19 AC 645 ms
5,376 KB
testcase_20 AC 609 ms
5,376 KB
testcase_21 AC 604 ms
5,376 KB
testcase_22 AC 611 ms
5,376 KB
testcase_23 AC 607 ms
5,376 KB
testcase_24 AC 501 ms
5,376 KB
testcase_25 AC 501 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include<cstdio>
#include<vector>
#include<algorithm>
using namespace std;
using ll = long long;
using ull = unsigned long long;
ull N, K;
unsigned P;
ull Solve(int x, vector<unsigned> A, vector<unsigned> B){
    unsigned a, b, c;
    a = (B[0] <= x) ? distance(A.begin(), upper_bound(A.begin(), A.end(), x - B[0])) : 0;
    b = distance(A.begin(), lower_bound(A.begin(), A.end(), P - B[0]));
    c = distance(A.begin(), upper_bound(A.begin(), A.end(), P + x - B[0]));
    ull ret = a + c - b;
    for (unsigned i = 1; i < N; i++){
        while(a > 0 && A[a-1] + B[i] > x ) a--;
        while(b > 0 && A[b-1] + B[i] >= P) b--;
        while(c > 0 && A[c-1] + B[i] > x + P) c--;
        ret += a + c - b;
    }
    return ret;
}

int main(){
    scanf("%llu %llu %u", &N, &K, &P);
    vector<unsigned> A(N);
    for(int i = 0; i < N; ++i) scanf("%u", &A[i]);
    sort(A.begin(), A.end());
    vector<unsigned> B(N);
    for(int i = 0; i < N; ++i) scanf("%u", &B[i]);
    sort(B.begin(), B.end());
    int ok = P-1, ng = -1, mid;
    while(ok - ng > 1){
        mid = ok + ng >>1;
        if(Solve(mid, A, B) >= K) ok = mid;
        else ng = mid;
    }
    printf("%d\n", ok);
	return 0;
}
0