結果

問題 No.1597 Matrix Sort
ユーザー Tomii9273Tomii9273
提出日時 2021-07-10 04:08:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 644 ms / 1,500 ms
コード長 677 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 478,608 KB
最終ジャッジ日時 2024-07-01 23:32:53
合計ジャッジ時間 13,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,584 KB
testcase_01 AC 49 ms
57,600 KB
testcase_02 AC 45 ms
57,984 KB
testcase_03 AC 641 ms
478,056 KB
testcase_04 AC 644 ms
478,484 KB
testcase_05 AC 618 ms
478,228 KB
testcase_06 AC 598 ms
478,404 KB
testcase_07 AC 628 ms
478,608 KB
testcase_08 AC 577 ms
475,868 KB
testcase_09 AC 550 ms
475,680 KB
testcase_10 AC 504 ms
477,868 KB
testcase_11 AC 494 ms
475,808 KB
testcase_12 AC 99 ms
102,676 KB
testcase_13 AC 148 ms
142,464 KB
testcase_14 AC 574 ms
476,100 KB
testcase_15 AC 99 ms
102,400 KB
testcase_16 AC 133 ms
142,720 KB
testcase_17 AC 527 ms
476,052 KB
testcase_18 AC 564 ms
478,420 KB
testcase_19 AC 569 ms
478,480 KB
testcase_20 AC 505 ms
478,288 KB
testcase_21 AC 494 ms
478,160 KB
testcase_22 AC 499 ms
478,092 KB
testcase_23 AC 502 ms
477,624 KB
testcase_24 AC 83 ms
99,456 KB
testcase_25 AC 77 ms
97,920 KB
testcase_26 AC 37 ms
51,840 KB
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 38 ms
52,124 KB
testcase_29 AC 425 ms
448,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
# sys.setrecursionlimit(10 ** 9)  # Codeforcesでは350000程度に
def input(): return sys.stdin.readline().strip()


n, k, p = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

AN = [0] * p
for i in range(n):
    AN[A[i]] += 1
AN = [0] + AN + AN
for i in range(len(AN)-1):
    AN[i+1] += AN[i]
# print(AN)

ok = p
ng = -1
while abs(ok - ng) > 1:
    mi = (ok + ng) // 2
    cnt = 0
    for i in range(n):
        l = p - B[i] if B[i] != 0 else 0
        r = l + mi
        # print("l,r", l, r)
        cnt += AN[r+1] - AN[l]
    # print(mi, cnt)
    if cnt >= k:
        ok = mi
    else:
        ng = mi
print(ok)
0