結果

問題 No.1597 Matrix Sort
ユーザー realDivineJKrealDivineJK
提出日時 2021-07-25 17:31:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 774 ms / 1,500 ms
コード長 1,086 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 104,684 KB
最終ジャッジ日時 2024-07-21 01:52:12
合計ジャッジ時間 14,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,596 KB
testcase_01 AC 42 ms
52,856 KB
testcase_02 AC 39 ms
53,352 KB
testcase_03 AC 600 ms
100,836 KB
testcase_04 AC 645 ms
100,840 KB
testcase_05 AC 774 ms
101,036 KB
testcase_06 AC 756 ms
100,564 KB
testcase_07 AC 769 ms
100,668 KB
testcase_08 AC 394 ms
101,204 KB
testcase_09 AC 466 ms
100,720 KB
testcase_10 AC 443 ms
103,740 KB
testcase_11 AC 200 ms
100,892 KB
testcase_12 AC 412 ms
104,352 KB
testcase_13 AC 580 ms
103,940 KB
testcase_14 AC 679 ms
100,792 KB
testcase_15 AC 378 ms
104,604 KB
testcase_16 AC 544 ms
103,740 KB
testcase_17 AC 624 ms
100,720 KB
testcase_18 AC 660 ms
100,660 KB
testcase_19 AC 625 ms
101,028 KB
testcase_20 AC 587 ms
100,900 KB
testcase_21 AC 595 ms
100,520 KB
testcase_22 AC 610 ms
103,132 KB
testcase_23 AC 642 ms
104,684 KB
testcase_24 AC 128 ms
102,240 KB
testcase_25 AC 93 ms
99,848 KB
testcase_26 AC 36 ms
53,380 KB
testcase_27 AC 38 ms
52,616 KB
testcase_28 AC 36 ms
53,204 KB
testcase_29 AC 49 ms
62,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, P = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
A.sort()
B.sort()
X = [0]*N
for i in range(N):
    l, r = 0, N
    d = N // 2
    if A[i] + B[0] >= P:
        continue
    while r - l > 1:
        if A[i] + B[d] < P:
            l = d
        else:
            r = d
        d = (l + r) // 2
    X[i] = d + 1
L, R = 0, P
D = P // 2
while R - L > 1:
    cnt = 0
    for i in range(N):
        if A[i] + B[0] < D:
            l, r = 0, N
            d = N // 2
            while r - l > 1:
                if A[i] + B[d] < D:
                    l = d
                else:
                    r = d
                d = (l + r) // 2
            cnt += d + 1
        if A[i] + B[0] < D + P:
            l, r = 0, N
            d = N // 2
            while r - l > 1:
                if A[i] + B[d] < D + P:
                    l = d
                else:
                    r = d
                d = (l + r) // 2
            cnt += d + 1 - X[i]
    if cnt < K:
        L = D
    else:
        R = D
    D = (L + R) // 2
print(D)
0