結果

問題 No.1597 Matrix Sort
ユーザー w0mbatw0mbat
提出日時 2021-07-10 09:29:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 169,672 KB
最終ジャッジ日時 2024-07-02 01:44:57
合計ジャッジ時間 7,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,220 KB
testcase_01 AC 41 ms
52,960 KB
testcase_02 AC 39 ms
52,532 KB
testcase_03 WA -
testcase_04 AC 339 ms
169,132 KB
testcase_05 AC 295 ms
169,188 KB
testcase_06 AC 291 ms
169,672 KB
testcase_07 AC 282 ms
169,132 KB
testcase_08 AC 296 ms
169,324 KB
testcase_09 AC 261 ms
169,128 KB
testcase_10 AC 174 ms
168,484 KB
testcase_11 AC 190 ms
168,224 KB
testcase_12 AC 141 ms
100,952 KB
testcase_13 AC 161 ms
101,392 KB
testcase_14 AC 314 ms
168,920 KB
testcase_15 AC 130 ms
101,900 KB
testcase_16 AC 152 ms
101,364 KB
testcase_17 AC 216 ms
168,976 KB
testcase_18 AC 298 ms
169,184 KB
testcase_19 AC 236 ms
169,112 KB
testcase_20 AC 213 ms
169,620 KB
testcase_21 AC 208 ms
169,436 KB
testcase_22 AC 205 ms
168,552 KB
testcase_23 AC 198 ms
168,024 KB
testcase_24 AC 96 ms
104,696 KB
testcase_25 AC 87 ms
104,664 KB
testcase_26 WA -
testcase_27 AC 39 ms
53,064 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 101 ms
135,716 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 = 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