結果

問題 No.1597 Matrix Sort
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-20 11:06:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 480 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 104,276 KB
最終ジャッジ日時 2024-09-20 06:31:51
合計ジャッジ時間 30,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,304 KB
testcase_01 AC 41 ms
59,332 KB
testcase_02 AC 41 ms
58,068 KB
testcase_03 AC 118 ms
103,920 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1,486 ms
104,012 KB
testcase_07 AC 1,448 ms
104,140 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 613 ms
102,700 KB
testcase_11 AC 926 ms
100,784 KB
testcase_12 AC 1,008 ms
103,100 KB
testcase_13 AC 1,486 ms
104,276 KB
testcase_14 TLE -
testcase_15 AC 872 ms
103,376 KB
testcase_16 AC 1,260 ms
103,756 KB
testcase_17 TLE -
testcase_18 AC 1,447 ms
104,056 KB
testcase_19 TLE -
testcase_20 AC 1,496 ms
104,204 KB
testcase_21 AC 1,432 ms
103,796 KB
testcase_22 AC 1,482 ms
103,788 KB
testcase_23 AC 1,059 ms
104,024 KB
testcase_24 AC 194 ms
100,960 KB
testcase_25 AC 149 ms
100,816 KB
testcase_26 AC 38 ms
53,136 KB
testcase_27 AC 37 ms
52,672 KB
testcase_28 AC 37 ms
53,492 KB
testcase_29 AC 47 ms
61,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, p = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

A.sort()
B.sort()

import bisect
def is_ok(x):
    cnt = 0
    for a in A:
        cnt += bisect.bisect_right(B, x-a)
        cnt += bisect.bisect_right(B, p+x-a)-bisect.bisect_left(B, p-a)
        if cnt >= k:
            return True
    return False

ng = -1
ok = p
while ng+1 < ok:
    c = (ng+ok)//2
    if is_ok(c):
        ok = c
    else:
        ng = c
print(ok)
0