結果

問題 No.1597 Matrix Sort
ユーザー rlangevinrlangevin
提出日時 2023-07-02 02:10:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,271 ms / 1,500 ms
コード長 865 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,344 KB
最終ジャッジ日時 2024-07-08 11:45:45
合計ジャッジ時間 11,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 309 ms
100,480 KB
testcase_04 AC 408 ms
100,864 KB
testcase_05 AC 901 ms
100,864 KB
testcase_06 AC 915 ms
100,992 KB
testcase_07 AC 1,271 ms
100,608 KB
testcase_08 AC 256 ms
100,864 KB
testcase_09 AC 388 ms
100,992 KB
testcase_10 AC 234 ms
104,448 KB
testcase_11 AC 164 ms
100,608 KB
testcase_12 AC 243 ms
104,912 KB
testcase_13 AC 355 ms
105,088 KB
testcase_14 AC 486 ms
100,608 KB
testcase_15 AC 185 ms
105,088 KB
testcase_16 AC 244 ms
105,344 KB
testcase_17 AC 269 ms
100,736 KB
testcase_18 AC 577 ms
100,480 KB
testcase_19 AC 669 ms
100,864 KB
testcase_20 AC 399 ms
100,352 KB
testcase_21 AC 243 ms
100,736 KB
testcase_22 AC 259 ms
105,088 KB
testcase_23 AC 254 ms
104,960 KB
testcase_24 AC 121 ms
102,400 KB
testcase_25 AC 105 ms
102,016 KB
testcase_26 AC 41 ms
52,096 KB
testcase_27 AC 41 ms
52,352 KB
testcase_28 AC 43 ms
52,096 KB
testcase_29 AC 44 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, K, P = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split())) + [10 ** 18]
A.sort(reverse=True)
B.sort()
no = -1
yes = P

def check(m):
    cnt = 0
    nowR, nowL = 0, 0
    for a in A:
        while B[nowR] <= m - a:
            nowR += 1
        while nowR - nowL:
            if B[nowL] < -a:
                nowL += 1
            else:
                break
        cnt += nowR - nowL
        
    nowR, nowL = 0, 0
    for a in A:
        while B[nowR] <= m - a + P:
            nowR += 1
        while nowR - nowL:
            if B[nowL] < P - a:
                nowL += 1
            else:
                break
        cnt += nowR - nowL
        
    return cnt >= K


while yes - no != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
print(yes) 
0