結果

問題 No.1597 Matrix Sort
ユーザー marroncastlemarroncastle
提出日時 2021-07-10 00:57:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 1,500 ms
コード長 673 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 182,400 KB
最終ジャッジ日時 2024-07-01 19:47:59
合計ジャッジ時間 7,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 388 ms
167,324 KB
testcase_04 AC 388 ms
167,100 KB
testcase_05 AC 320 ms
167,620 KB
testcase_06 AC 312 ms
167,532 KB
testcase_07 AC 307 ms
167,480 KB
testcase_08 AC 274 ms
167,328 KB
testcase_09 AC 276 ms
167,144 KB
testcase_10 AC 212 ms
181,376 KB
testcase_11 AC 227 ms
166,988 KB
testcase_12 AC 155 ms
103,936 KB
testcase_13 AC 176 ms
103,552 KB
testcase_14 AC 354 ms
167,168 KB
testcase_15 AC 143 ms
104,448 KB
testcase_16 AC 160 ms
103,552 KB
testcase_17 AC 262 ms
166,916 KB
testcase_18 AC 339 ms
167,344 KB
testcase_19 AC 284 ms
167,016 KB
testcase_20 AC 252 ms
167,244 KB
testcase_21 AC 256 ms
167,336 KB
testcase_22 AC 245 ms
167,060 KB
testcase_23 AC 230 ms
182,400 KB
testcase_24 AC 102 ms
101,760 KB
testcase_25 AC 86 ms
98,688 KB
testcase_26 AC 42 ms
51,968 KB
testcase_27 AC 42 ms
51,968 KB
testcase_28 AC 42 ms
52,096 KB
testcase_29 AC 140 ms
135,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,os,io
input = sys.stdin.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline
N, K, P = map(int, input().split())
A = sorted(list(map(int, input().split())))
B = sorted(list(map(int, input().split())))
lis = [0]*P
for i in range(N): lis[B[i]] += 1
for i in range(1,P): lis[i] += lis[i-1]

from bisect import *
def check(target):
    cnt = 0
    for i in range(N):
        t = target - A[i]
        if t >= 0: cnt += lis[t]
        cnt += lis[min(P-1, t+P)] - lis[P-1-A[i]]
    return cnt >= K

low,high = -1,P-1
mid = (low+high)//2
while high-low>1:
    if check(mid): high = mid
    else: low = mid
    mid = (low+high)//2
ans = high
print(ans)
0