結果

問題 No.1597 Matrix Sort
ユーザー mrngmrng
提出日時 2021-12-14 00:05:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 542 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 104,180 KB
最終ジャッジ日時 2024-07-23 00:04:44
合計ジャッジ時間 7,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,812 KB
testcase_01 AC 42 ms
58,532 KB
testcase_02 AC 37 ms
58,124 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,464 ms
103,256 KB
testcase_11 AC 1,049 ms
101,040 KB
testcase_12 AC 1,109 ms
103,424 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 956 ms
102,844 KB
testcase_16 AC 1,332 ms
103,900 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1,383 ms
103,308 KB
testcase_24 AC 226 ms
100,784 KB
testcase_25 AC 199 ms
100,428 KB
testcase_26 AC 38 ms
52,872 KB
testcase_27 AC 39 ms
52,640 KB
testcase_28 AC 38 ms
52,732 KB
testcase_29 AC 44 ms
61,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def lower_bound(a,x):
	ng,ok = -1,len(a)
	while ok-ng>1:
		m = (ng+ok)//2
		if x<=a[m]: ok = m
		else: ng = m
	return ok

def upper_bound(a,x):
	ok,ng = -1,len(a)
	while ng-ok>1:
		m = (ng+ok)//2
		if x>a[m]: ok = m
		else: ng = m
	return ok

n,k,p = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
b.sort()
l,r = -1,p
while r-l>1:
	m = (l+r)//2
	cnt = 0
	for i in range(n):
		cnt += upper_bound(b,m+p-a[i])-lower_bound(b,p-a[i])+1+upper_bound(b,m-a[i])+1
	if cnt<k: l = m
	else: r = m
print(l)
0