結果

問題 No.1597 Matrix Sort
ユーザー penguinmanpenguinman
提出日時 2021-05-05 02:15:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 1,500 ms
コード長 547 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 182,052 KB
最終ジャッジ日時 2024-07-01 14:15:02
合計ジャッジ時間 7,375 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 288 ms
181,620 KB
testcase_04 AC 307 ms
181,744 KB
testcase_05 AC 340 ms
181,852 KB
testcase_06 AC 337 ms
181,512 KB
testcase_07 AC 296 ms
182,032 KB
testcase_08 AC 266 ms
166,632 KB
testcase_09 AC 276 ms
166,652 KB
testcase_10 AC 202 ms
181,076 KB
testcase_11 AC 204 ms
166,364 KB
testcase_12 AC 104 ms
102,672 KB
testcase_13 AC 140 ms
110,976 KB
testcase_14 AC 309 ms
166,732 KB
testcase_15 AC 114 ms
102,720 KB
testcase_16 AC 140 ms
111,392 KB
testcase_17 AC 248 ms
181,672 KB
testcase_18 AC 304 ms
182,052 KB
testcase_19 AC 268 ms
181,916 KB
testcase_20 AC 234 ms
181,576 KB
testcase_21 AC 229 ms
181,492 KB
testcase_22 AC 226 ms
181,796 KB
testcase_23 AC 209 ms
181,236 KB
testcase_24 AC 79 ms
97,964 KB
testcase_25 AC 75 ms
97,628 KB
testcase_26 AC 38 ms
51,876 KB
testcase_27 AC 38 ms
53,492 KB
testcase_28 AC 37 ms
52,676 KB
testcase_29 AC 127 ms
135,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,P = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
imos = [0]*(P+1)
for i in range(N):
    imos[B[i]+1] += 1
for i in range(P):
    imos[i+1] += imos[i]
left = -1
right = P-1
while left+1 < right:
    mid = (left+right)//2
    cnt = 0
    for i in range(N):
        l = -A[i]
        r = mid-A[i]
        if r < 0:
            cnt += imos[r+P+1]-imos[l+P]
        else:
            cnt += imos[r+1]+imos[P]-imos[l+P]
    if cnt >= K:
        right = mid
    else:
        left = mid
print(right)
0