結果

問題 No.1597 Matrix Sort
ユーザー neterukunneterukun
提出日時 2021-07-09 22:23:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 690 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 103,296 KB
最終ジャッジ日時 2024-07-01 16:59:47
合計ジャッジ時間 31,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,292 ms
102,784 KB
testcase_09 AC 1,350 ms
102,912 KB
testcase_10 AC 814 ms
102,016 KB
testcase_11 AC 637 ms
102,912 KB
testcase_12 AC 1,066 ms
102,656 KB
testcase_13 AC 1,455 ms
102,580 KB
testcase_14 TLE -
testcase_15 AC 762 ms
102,416 KB
testcase_16 AC 1,061 ms
102,400 KB
testcase_17 AC 1,194 ms
102,528 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 1,342 ms
102,912 KB
testcase_22 AC 1,241 ms
102,600 KB
testcase_23 AC 1,182 ms
102,528 KB
testcase_24 AC 176 ms
100,992 KB
testcase_25 AC 167 ms
102,016 KB
testcase_26 AC 40 ms
52,224 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 39 ms
52,352 KB
testcase_29 AC 47 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import bisect
input = sys.stdin.buffer.readline


def solve(val):
    cnt = 0
    for va in a:
        if va <= val:
            l = val - va
            r = p - va - 1
            cnt += bisect.bisect_right(b, l)
            cnt += n - bisect.bisect_right(b, r)
        else:
            l = p - va
            r = l + val + 1
            cnt += bisect.bisect_left(b, r) - bisect.bisect_left(b, l)
    return cnt

n, k, p = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

b = sorted(b)
ok = p
ng = -1
while abs(ok - ng) > 1:
    mid = (ok + ng) // 2
    if solve(mid) >= k:
        ok = mid
    else:
        ng = mid
print(ok)
0