結果

問題 No.1597 Matrix Sort
ユーザー furafura
提出日時 2021-07-09 22:44:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 686 ms / 1,500 ms
コード長 634 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 205,748 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 17:56:31
合計ジャッジ時間 12,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 642 ms
6,944 KB
testcase_04 AC 681 ms
6,940 KB
testcase_05 AC 683 ms
6,944 KB
testcase_06 AC 663 ms
6,940 KB
testcase_07 AC 686 ms
6,940 KB
testcase_08 AC 455 ms
6,940 KB
testcase_09 AC 469 ms
6,944 KB
testcase_10 AC 167 ms
6,944 KB
testcase_11 AC 126 ms
6,940 KB
testcase_12 AC 379 ms
6,944 KB
testcase_13 AC 527 ms
6,940 KB
testcase_14 AC 591 ms
6,944 KB
testcase_15 AC 120 ms
6,940 KB
testcase_16 AC 209 ms
6,940 KB
testcase_17 AC 234 ms
6,940 KB
testcase_18 AC 642 ms
6,944 KB
testcase_19 AC 642 ms
6,944 KB
testcase_20 AC 635 ms
6,940 KB
testcase_21 AC 400 ms
6,940 KB
testcase_22 AC 198 ms
6,944 KB
testcase_23 AC 176 ms
6,944 KB
testcase_24 AC 35 ms
6,944 KB
testcase_25 AC 32 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;
using lint=long long;

int main(){
	int n,p;
	lint k; scanf("%d%lld%d",&n,&k,&p);
	vector<int> a(n),b(n);
	rep(i,n) scanf("%d",&a[i]);
	rep(j,n) scanf("%d",&b[j]);

	sort(b.begin(),b.end());

	auto f=[&](int tar){
		lint cnt=0;
		rep(i,n){
			cnt+=upper_bound(b.begin(),b.end(),tar-a[i])-b.begin();
			cnt+=upper_bound(b.begin(),b.end(),tar+p-a[i])-lower_bound(b.begin(),b.end(),p-a[i]);
		}
		return cnt;
	};

	int lo=-1,hi=p;
	while(hi-lo>1){
		int mi=(lo+hi)/2;
		if(f(mi)>=k) hi=mi;
		else         lo=mi;
	}
	printf("%d\n",hi);

	return 0;
}
0