結果

問題 No.1597 Matrix Sort
ユーザー w0mbatw0mbat
提出日時 2021-07-09 22:18:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 817 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-07-01 16:56:14
合計ジャッジ時間 28,701 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 46 ms
57,344 KB
testcase_02 AC 46 ms
57,472 KB
testcase_03 WA -
testcase_04 AC 1,359 ms
99,072 KB
testcase_05 AC 1,476 ms
99,072 KB
testcase_06 AC 1,499 ms
98,944 KB
testcase_07 TLE -
testcase_08 AC 1,083 ms
98,816 KB
testcase_09 AC 1,156 ms
98,944 KB
testcase_10 AC 856 ms
100,224 KB
testcase_11 AC 415 ms
99,200 KB
testcase_12 AC 839 ms
100,096 KB
testcase_13 AC 1,217 ms
100,864 KB
testcase_14 AC 1,415 ms
99,200 KB
testcase_15 AC 772 ms
100,352 KB
testcase_16 AC 1,143 ms
100,480 KB
testcase_17 TLE -
testcase_18 AC 1,350 ms
98,688 KB
testcase_19 AC 1,330 ms
99,072 KB
testcase_20 TLE -
testcase_21 AC 1,365 ms
99,712 KB
testcase_22 AC 1,319 ms
99,328 KB
testcase_23 TLE -
testcase_24 AC 172 ms
104,576 KB
testcase_25 AC 147 ms
103,936 KB
testcase_26 WA -
testcase_27 AC 42 ms
51,968 KB
testcase_28 AC 41 ms
51,968 KB
testcase_29 AC 53 ms
59,520 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 = 0
    r = P
    while r - l > 1:
        m = (l + r) // 2
        if f(m) < K: l = m
        else: r = m
    print(r)

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