結果

問題 No.1597 Matrix Sort
ユーザー googol_S0googol_S0
提出日時 2021-07-09 23:13:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 384 ms / 1,500 ms
コード長 457 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-07-01 18:15:50
合計ジャッジ時間 8,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 337 ms
101,248 KB
testcase_04 AC 356 ms
101,248 KB
testcase_05 AC 373 ms
100,992 KB
testcase_06 AC 376 ms
100,992 KB
testcase_07 AC 384 ms
101,248 KB
testcase_08 AC 292 ms
100,736 KB
testcase_09 AC 312 ms
101,120 KB
testcase_10 AC 229 ms
102,656 KB
testcase_11 AC 164 ms
100,736 KB
testcase_12 AC 243 ms
103,040 KB
testcase_13 AC 326 ms
100,352 KB
testcase_14 AC 356 ms
101,376 KB
testcase_15 AC 216 ms
103,936 KB
testcase_16 AC 271 ms
103,424 KB
testcase_17 AC 294 ms
101,120 KB
testcase_18 AC 365 ms
101,248 KB
testcase_19 AC 310 ms
101,248 KB
testcase_20 AC 296 ms
101,248 KB
testcase_21 AC 285 ms
100,992 KB
testcase_22 AC 292 ms
100,992 KB
testcase_23 AC 275 ms
102,784 KB
testcase_24 AC 123 ms
100,608 KB
testcase_25 AC 102 ms
100,480 KB
testcase_26 AC 41 ms
51,968 KB
testcase_27 AC 41 ms
51,968 KB
testcase_28 AC 41 ms
52,096 KB
testcase_29 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N,K,P=map(int,input().split())
A=list(map(int,input().split()))
A.sort(reverse=True)
B=list(map(int,input().split()))
B.sort()
L,R=0,P
while L<R:
  M=(L+R)>>1
  C=0
  x,y,z=0,0,0
  for i in range(N):
    while x<N and B[x]<=M-A[i]:
      x+=1
    while y<N and B[y]<=P+M-A[i]:
      y+=1
    while z<N and B[z]<P-A[i]:
      z+=1
    if M>=A[i]:
      C+=x+y-z
    else:
      C+=y-z
  if C>=K:
    R=M
  else:
    L=max(L+1,M)
print(L)
0