結果

問題 No.1597 Matrix Sort
ユーザー NSNS
提出日時 2021-07-10 14:22:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 586 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-07-02 02:22:53
合計ジャッジ時間 35,382 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 48 ms
58,112 KB
testcase_02 AC 47 ms
57,856 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,079 ms
102,656 KB
testcase_11 AC 1,107 ms
100,736 KB
testcase_12 AC 1,148 ms
102,784 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 969 ms
103,552 KB
testcase_16 AC 1,377 ms
103,680 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1,410 ms
103,808 KB
testcase_24 AC 171 ms
100,992 KB
testcase_25 AC 158 ms
100,352 KB
testcase_26 AC 42 ms
52,096 KB
testcase_27 AC 42 ms
51,968 KB
testcase_28 AC 43 ms
51,712 KB
testcase_29 AC 54 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,p=map(int, input().split())
al=list(map(int, input().split()))
bl=list(map(int, input().split()))
al.sort()
bl.sort()

from bisect import bisect_left, bisect_right
def check_cnt(val):
    res=0
    for a in al:
        cnt1 = bisect_right(bl, val-a)
        cnt2 = n - bisect_left(bl, p-a)
        cnt3 = n - bisect_right(bl, val+p-a)
        res+=(cnt1+cnt2-cnt3)
    return res

ok, ng = 0, p
ok, ng = p-1, -1
while abs(ok-ng) > 1:
    mid = (ok+ng)//2
    res = True
    # ...
    cnt=check_cnt(mid)
    # print('---',mid,cnt)
    if cnt>=k: ok = mid
    else: ng = mid
print(ok)
0