結果

問題 No.1597 Matrix Sort
ユーザー rlangevinrlangevin
提出日時 2023-07-02 02:05:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 925 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 155,488 KB
最終ジャッジ日時 2024-07-08 11:41:01
合計ジャッジ時間 16,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,760 KB
testcase_01 AC 48 ms
53,888 KB
testcase_02 AC 47 ms
53,888 KB
testcase_03 AC 433 ms
98,816 KB
testcase_04 AC 564 ms
98,688 KB
testcase_05 AC 1,356 ms
148,196 KB
testcase_06 AC 1,369 ms
147,304 KB
testcase_07 TLE -
testcase_08 AC 356 ms
99,316 KB
testcase_09 AC 530 ms
102,136 KB
testcase_10 AC 326 ms
102,600 KB
testcase_11 AC 197 ms
98,688 KB
testcase_12 AC 339 ms
98,944 KB
testcase_13 AC 515 ms
100,596 KB
testcase_14 AC 710 ms
115,720 KB
testcase_15 AC 257 ms
103,680 KB
testcase_16 AC 338 ms
100,224 KB
testcase_17 AC 384 ms
106,916 KB
testcase_18 AC 825 ms
105,192 KB
testcase_19 AC 974 ms
116,328 KB
testcase_20 AC 559 ms
105,108 KB
testcase_21 AC 354 ms
104,440 KB
testcase_22 AC 368 ms
104,976 KB
testcase_23 AC 385 ms
117,556 KB
testcase_24 AC 144 ms
102,656 KB
testcase_25 AC 134 ms
103,168 KB
testcase_26 AC 46 ms
53,760 KB
testcase_27 AC 47 ms
53,888 KB
testcase_28 AC 48 ms
54,144 KB
testcase_29 AC 48 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
from collections 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
    Q = deque()
    now = 0
    for a in A:
        while B[now] <= m - a:
            Q.append(B[now])
            now += 1
        while Q:
            if Q[0] < -a:
                Q.popleft()
            else:
                break
        cnt += len(Q)
        
    Q = deque()
    now = 0
    for a in A:
        while B[now] <= m - a + P:
            Q.append(B[now])
            now += 1
        while Q:
            if Q[0] < P - a:
                Q.popleft()
            else:
                break
        cnt += len(Q)
        
    return cnt >= K


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