結果

問題 No.1597 Matrix Sort
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-20 11:04:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 438 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 104,012 KB
最終ジャッジ日時 2024-09-20 06:31:18
合計ジャッジ時間 32,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,260 KB
testcase_01 AC 42 ms
58,400 KB
testcase_02 AC 39 ms
59,360 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,484 ms
103,952 KB
testcase_06 AC 1,426 ms
104,012 KB
testcase_07 AC 1,401 ms
103,756 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 925 ms
102,836 KB
testcase_11 AC 958 ms
100,480 KB
testcase_12 AC 1,040 ms
103,040 KB
testcase_13 AC 1,429 ms
103,552 KB
testcase_14 TLE -
testcase_15 AC 863 ms
103,296 KB
testcase_16 AC 1,220 ms
103,640 KB
testcase_17 AC 1,474 ms
103,808 KB
testcase_18 AC 1,423 ms
103,936 KB
testcase_19 TLE -
testcase_20 AC 1,499 ms
103,936 KB
testcase_21 AC 1,433 ms
103,552 KB
testcase_22 AC 1,452 ms
103,680 KB
testcase_23 AC 1,270 ms
103,948 KB
testcase_24 AC 225 ms
100,848 KB
testcase_25 AC 181 ms
100,608 KB
testcase_26 AC 35 ms
53,616 KB
testcase_27 AC 37 ms
52,696 KB
testcase_28 AC 37 ms
53,008 KB
testcase_29 AC 45 ms
60,476 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)
    return cnt >= k

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