結果

問題 No.1597 Matrix Sort
ユーザー ransewhaleransewhale
提出日時 2021-07-10 01:01:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 820 ms / 1,500 ms
コード長 1,009 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 80,500 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-01 19:54:07
合計ジャッジ時間 13,816 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 763 ms
5,376 KB
testcase_04 AC 820 ms
5,376 KB
testcase_05 AC 796 ms
5,376 KB
testcase_06 AC 771 ms
5,376 KB
testcase_07 AC 764 ms
5,376 KB
testcase_08 AC 590 ms
5,376 KB
testcase_09 AC 607 ms
5,376 KB
testcase_10 AC 235 ms
5,376 KB
testcase_11 AC 231 ms
5,376 KB
testcase_12 AC 465 ms
5,376 KB
testcase_13 AC 648 ms
5,376 KB
testcase_14 AC 717 ms
5,376 KB
testcase_15 AC 182 ms
5,376 KB
testcase_16 AC 308 ms
5,376 KB
testcase_17 AC 348 ms
5,376 KB
testcase_18 AC 774 ms
5,376 KB
testcase_19 AC 775 ms
5,376 KB
testcase_20 AC 752 ms
5,376 KB
testcase_21 AC 493 ms
5,376 KB
testcase_22 AC 303 ms
5,376 KB
testcase_23 AC 265 ms
5,376 KB
testcase_24 AC 44 ms
5,376 KB
testcase_25 AC 40 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 #

#include <stdio.h>
#include <iostream>
#include <vector>
#include <queue>
#include <stack>
#include <algorithm>

using ll = long long int;
const int INF = (1<<30);
const ll INFLL = (1ll<<60);
const ll MOD = (ll)(1e9+7);

#define l_ength size

void mul_mod(ll& a, ll b){
	a *= b;
	a %= MOD;
}

void add_mod(ll& a, ll b){
	a = (a<MOD)?a:(a-MOD);
	b = (b<MOD)?b:(b-MOD);
	a += b;
	a = (a<MOD)?a:(a-MOD);
}

int n;
ll k,p,a[100100],b[100100];

bool check(ll x){
	int i;
	ll cnt=0ll;
	for(i=0; i<n; ++i){
		cnt += (ll)(std::lower_bound(b,b+n,x-a[i])-std::lower_bound(b,b+n,0ll-a[i]));
		cnt += (ll)(std::lower_bound(b,b+n,p+x-a[i])-std::lower_bound(b,b+n,p-a[i]));
	}
	return (cnt<k);
}

int main(void){
	int i;
	ll ok=0ll,ng,mid;
	std::cin >> n >> k >> p; ng = p;
	for(i=0; i<n; ++i){
		std::cin >> a[i];
	}
	for(i=0; i<n; ++i){
		std::cin >> b[i];
	}
	std::sort(b,b+n);
	while(ng-ok>1ll){
		mid = (ok+ng)/2;
		if(check(mid)){
			ok = mid;
		}else{
			ng = mid;
		}
	}
	std::cout << ok << std::endl;
	return 0;
}
0