結果

問題 No.1597 Matrix Sort
ユーザー penguinmanpenguinman
提出日時 2021-05-05 02:14:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 1,500 ms
コード長 545 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 181,956 KB
最終ジャッジ日時 2024-07-01 14:14:29
合計ジャッジ時間 7,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 254 ms
181,504 KB
testcase_04 AC 269 ms
181,504 KB
testcase_05 AC 303 ms
181,760 KB
testcase_06 AC 302 ms
181,632 KB
testcase_07 AC 257 ms
181,760 KB
testcase_08 AC 245 ms
166,576 KB
testcase_09 AC 249 ms
166,376 KB
testcase_10 AC 170 ms
181,300 KB
testcase_11 AC 174 ms
166,716 KB
testcase_12 AC 110 ms
102,424 KB
testcase_13 AC 154 ms
110,720 KB
testcase_14 AC 286 ms
166,848 KB
testcase_15 AC 114 ms
102,144 KB
testcase_16 AC 141 ms
111,232 KB
testcase_17 AC 216 ms
181,248 KB
testcase_18 AC 261 ms
181,956 KB
testcase_19 AC 211 ms
181,248 KB
testcase_20 AC 194 ms
181,840 KB
testcase_21 AC 193 ms
181,504 KB
testcase_22 AC 191 ms
181,632 KB
testcase_23 AC 172 ms
181,504 KB
testcase_24 AC 83 ms
99,388 KB
testcase_25 AC 83 ms
97,280 KB
testcase_26 AC 37 ms
51,840 KB
testcase_27 AC 38 ms
51,712 KB
testcase_28 AC 38 ms
51,328 KB
testcase_29 AC 99 ms
135,424 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
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