結果

問題 No.1597 Matrix Sort
ユーザー NSNS
提出日時 2021-07-10 14:34:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 1,500 ms
コード長 847 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 181,976 KB
最終ジャッジ日時 2024-07-02 02:24:50
合計ジャッジ時間 7,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 42 ms
52,480 KB
testcase_03 AC 356 ms
166,232 KB
testcase_04 AC 352 ms
165,988 KB
testcase_05 AC 310 ms
165,904 KB
testcase_06 AC 304 ms
166,060 KB
testcase_07 AC 297 ms
165,848 KB
testcase_08 AC 267 ms
167,128 KB
testcase_09 AC 272 ms
167,264 KB
testcase_10 AC 207 ms
181,120 KB
testcase_11 AC 217 ms
166,748 KB
testcase_12 AC 153 ms
103,808 KB
testcase_13 AC 176 ms
103,828 KB
testcase_14 AC 333 ms
167,144 KB
testcase_15 AC 143 ms
103,808 KB
testcase_16 AC 163 ms
103,796 KB
testcase_17 AC 257 ms
167,076 KB
testcase_18 AC 333 ms
165,860 KB
testcase_19 AC 284 ms
165,984 KB
testcase_20 AC 256 ms
165,932 KB
testcase_21 AC 242 ms
166,044 KB
testcase_22 AC 235 ms
165,968 KB
testcase_23 AC 222 ms
181,976 KB
testcase_24 AC 100 ms
101,200 KB
testcase_25 AC 83 ms
97,272 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 42 ms
51,968 KB
testcase_28 AC 42 ms
52,096 KB
testcase_29 AC 137 ms
136,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k,p=map(int, input().split())
al=list(map(int, input().split()))
bl=list(map(int, input().split()))
al.sort()
bl.sort()

bcl=[0]*(p+1)
for b in bl:
    bcl[b]+=1
for i in range(p):
    bcl[i+1]+=bcl[i]

# print(bcl)

def check_cnt(val):
    res=0
    for a in al:
        # cnt1 = bisect_right(bl, val-a)
        # # cnt2 = n - bisect_left(bl, p-a)
        # cnt2 = n - bisect_right(bl, p-a-1)
        # cnt3 = n - bisect_right(bl, val+p-a)
        # print(val-a, p-a-1)
        if val-a<0:
            cnt1=0
        else:
            cnt1=bcl[max(val-a,0)]
        cnt2=bcl[min(p,val+p-a)]-bcl[p-a-1]
        res+=(cnt1+cnt2)
    return res

ok, ng = 0, p
ok, ng = p-1, -1
while abs(ok-ng) > 1:
    mid = (ok+ng)//2
    res = True
    # ...
    cnt=check_cnt(mid)
    # print('---',mid,cnt)
    if cnt>=k: ok = mid
    else: ng = mid
print(ok)
0