結果

問題 No.1597 Matrix Sort
ユーザー w0mbatw0mbat
提出日時 2021-07-10 09:39:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 1,500 ms
コード長 740 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 169,496 KB
最終ジャッジ日時 2024-07-02 01:46:04
合計ジャッジ時間 6,923 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,628 KB
testcase_01 AC 38 ms
52,764 KB
testcase_02 AC 39 ms
53,764 KB
testcase_03 AC 326 ms
168,808 KB
testcase_04 AC 340 ms
169,496 KB
testcase_05 AC 294 ms
169,472 KB
testcase_06 AC 288 ms
169,264 KB
testcase_07 AC 278 ms
169,192 KB
testcase_08 AC 289 ms
169,456 KB
testcase_09 AC 258 ms
168,916 KB
testcase_10 AC 173 ms
167,968 KB
testcase_11 AC 182 ms
168,464 KB
testcase_12 AC 141 ms
100,868 KB
testcase_13 AC 160 ms
101,252 KB
testcase_14 AC 308 ms
169,320 KB
testcase_15 AC 132 ms
102,012 KB
testcase_16 AC 154 ms
101,000 KB
testcase_17 AC 216 ms
169,148 KB
testcase_18 AC 296 ms
169,188 KB
testcase_19 AC 237 ms
169,052 KB
testcase_20 AC 212 ms
169,212 KB
testcase_21 AC 209 ms
169,268 KB
testcase_22 AC 206 ms
168,884 KB
testcase_23 AC 190 ms
167,972 KB
testcase_24 AC 98 ms
104,696 KB
testcase_25 AC 85 ms
104,840 KB
testcase_26 AC 38 ms
53,360 KB
testcase_27 AC 38 ms
52,408 KB
testcase_28 AC 38 ms
54,144 KB
testcase_29 AC 101 ms
135,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()
    C = [0] * (P)
    for b in B:
        C[b] += 1
    for i in range(1, P):
        C[i] += C[i - 1]

    # x以下の要素の数
    def f(x):
        res = 0
        for a in A:
            # Ai+Bj <= x
            if x - a >= 0:
                res += C[x - a]
            # P <= Ai+Bi <= P+x
            res += C[min(P - 1, P + x - a)] - C[P - a - 1]
        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