結果

問題 No.1597 Matrix Sort
ユーザー w0mbatw0mbat
提出日時 2021-07-10 09:39:28
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 820 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 104,912 KB
最終ジャッジ日時 2024-07-02 01:46:34
合計ジャッジ時間 28,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,284 KB
testcase_01 AC 43 ms
57,672 KB
testcase_02 AC 42 ms
57,780 KB
testcase_03 AC 1,300 ms
99,484 KB
testcase_04 AC 1,380 ms
99,540 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,044 ms
99,184 KB
testcase_09 AC 1,170 ms
99,236 KB
testcase_10 AC 879 ms
100,856 KB
testcase_11 AC 409 ms
99,660 KB
testcase_12 AC 830 ms
100,208 KB
testcase_13 AC 1,197 ms
101,076 KB
testcase_14 AC 1,331 ms
99,176 KB
testcase_15 AC 765 ms
100,692 KB
testcase_16 AC 1,143 ms
100,936 KB
testcase_17 TLE -
testcase_18 AC 1,459 ms
99,340 KB
testcase_19 AC 1,337 ms
99,772 KB
testcase_20 TLE -
testcase_21 AC 1,337 ms
100,088 KB
testcase_22 AC 1,402 ms
99,876 KB
testcase_23 AC 1,441 ms
100,884 KB
testcase_24 AC 152 ms
104,912 KB
testcase_25 AC 122 ms
104,712 KB
testcase_26 AC 39 ms
52,464 KB
testcase_27 AC 39 ms
52,416 KB
testcase_28 AC 37 ms
52,616 KB
testcase_29 AC 47 ms
62,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
import sys
def main():
    input = sys.stdin.readline
    N, K, P = map(int, input().split())
    *A, = map(int, input().split())
    *B, = map(int, input().split())
    A.sort()
    B.sort()

    # x以下の要素の数
    def f(x):
        res = 0
        for a in A:
            # Ai+Bj <= x
            if a + B[0] <= x:
                i = bisect_right(B, x - a)
                res += i
            # P <= Ai+Bi <= P+x
            if a + B[0] <= P + x:
                i = bisect_left(B, P - a)
                j = bisect_right(B, P + x - a)
                res += max(0, j - i)
        return res

    l = -1
    r = P-1
    while r - l > 1:
        m = (l + r) // 2
        if f(m) < K: l = m
        else: r = m
    print(r)

if __name__ == '__main__':
    main()
0