結果

問題 No.1597 Matrix Sort
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-27 18:07:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 827 ms / 1,500 ms
コード長 529 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 489,884 KB
最終ジャッジ日時 2024-06-30 08:56:40
合計ジャッジ時間 14,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 827 ms
489,752 KB
testcase_04 AC 709 ms
489,884 KB
testcase_05 AC 638 ms
489,828 KB
testcase_06 AC 638 ms
489,616 KB
testcase_07 AC 599 ms
489,488 KB
testcase_08 AC 576 ms
487,328 KB
testcase_09 AC 605 ms
488,180 KB
testcase_10 AC 562 ms
489,828 KB
testcase_11 AC 521 ms
487,456 KB
testcase_12 AC 99 ms
102,528 KB
testcase_13 AC 176 ms
176,896 KB
testcase_14 AC 607 ms
487,860 KB
testcase_15 AC 108 ms
102,144 KB
testcase_16 AC 174 ms
176,948 KB
testcase_17 AC 543 ms
487,720 KB
testcase_18 AC 580 ms
489,736 KB
testcase_19 AC 538 ms
489,748 KB
testcase_20 AC 532 ms
489,812 KB
testcase_21 AC 531 ms
489,744 KB
testcase_22 AC 519 ms
489,308 KB
testcase_23 AC 504 ms
489,176 KB
testcase_24 AC 76 ms
98,944 KB
testcase_25 AC 74 ms
97,664 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 35 ms
51,712 KB
testcase_29 AC 448 ms
479,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
N, K, P = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ctA = [0]*P
ctB = [0]*P
for a, b in zip(A, B):
    ctA[a] += 1
    ctB[b] += 1

acumB = [0]+list(accumulate(ctB))


def solve(v):
    ct = 0
    for a in A:
        if v >= a:
            ct += acumB[v-a+1]
        ct += acumB[min(P, P+v-a+1)]-acumB[P-a]
    return ct >= K


l, r = -1, P-1
while r-l > 1:
    m = (l+r)//2
    if solve(m):
        r = m
    else:
        l = m

print(r)
0