結果

問題 No.1597 Matrix Sort
ユーザー shotoyooshotoyoo
提出日時 2021-07-09 23:19:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 859 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 104,840 KB
最終ジャッジ日時 2024-07-01 18:21:03
合計ジャッジ時間 33,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 43 ms
57,916 KB
testcase_02 AC 44 ms
57,728 KB
testcase_03 AC 126 ms
100,960 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 686 ms
103,424 KB
testcase_11 AC 1,080 ms
101,504 KB
testcase_12 AC 1,099 ms
103,848 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 965 ms
103,936 KB
testcase_16 AC 1,411 ms
104,320 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 211 ms
101,632 KB
testcase_25 AC 156 ms
100,432 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 39 ms
51,840 KB
testcase_29 AC 50 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,k,p = list(map(int, input().split()))
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.sort()
b.sort()
from bisect import bisect_left as bl, bisect_right as br
def sub(x):
    val = 0
    for i in range(n):
        v = a[i]
        ind = bl(b, p-v)
        i0 = br(b, x-v)
        i1 = br(b, x+p-v)
#         print(v, ind, i0, i1, x)
        if i0>0:
            val += min(i0, ind)
        if i1>=ind:
            val += (i1-ind)
        if val>=k:
            return 0
    return 1
l = -1
r = p+1
while abs(l-r)>1:
    m = (l+r)//2
    if sub(m):
        l = m
    else:
        r = m
ans = r
print(ans)
0