結果

問題 No.1597 Matrix Sort
ユーザー zkouzkou
提出日時 2021-07-10 00:12:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 1,500 ms
コード長 627 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-07-01 19:01:52
合計ジャッジ時間 7,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 42 ms
52,864 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 300 ms
101,740 KB
testcase_04 AC 321 ms
101,480 KB
testcase_05 AC 317 ms
101,504 KB
testcase_06 AC 310 ms
101,340 KB
testcase_07 AC 296 ms
101,688 KB
testcase_08 AC 272 ms
101,248 KB
testcase_09 AC 274 ms
101,504 KB
testcase_10 AC 128 ms
102,872 KB
testcase_11 AC 190 ms
101,120 KB
testcase_12 AC 223 ms
103,412 KB
testcase_13 AC 291 ms
100,600 KB
testcase_14 AC 298 ms
101,212 KB
testcase_15 AC 190 ms
103,468 KB
testcase_16 AC 226 ms
103,680 KB
testcase_17 AC 250 ms
101,504 KB
testcase_18 AC 307 ms
101,220 KB
testcase_19 AC 247 ms
101,760 KB
testcase_20 AC 236 ms
101,092 KB
testcase_21 AC 217 ms
101,632 KB
testcase_22 AC 208 ms
101,248 KB
testcase_23 AC 151 ms
103,480 KB
testcase_24 AC 102 ms
100,736 KB
testcase_25 AC 86 ms
100,604 KB
testcase_26 AC 40 ms
52,352 KB
testcase_27 AC 41 ms
51,968 KB
testcase_28 AC 41 ms
52,096 KB
testcase_29 AC 41 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right

N, K, P = map(int, input().split())
As = sorted(map(int, input().split()))
Bs = sorted(map(int, input().split()))

def isok(m):
    cnt = 0
    p = N
    q = N
    r = N
    for A in As:
        while p > 0 and m - A < Bs[p - 1]:
            p -= 1
        while q > 0 and m - A + P < Bs[q - 1]:
            q -= 1
        while r > 0 and - A + P <= Bs[r - 1]:
            r -= 1
        cnt += p + q - r
    # print(m ,cnt)
    return cnt < K


ok = -1
ng = P
while ng - ok > 1:
    mid = (ok + ng) // 2
    if isok(mid):
        ok = mid
    else:
        ng = mid

print(ok + 1)
0