結果

問題 No.1597 Matrix Sort
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-02-06 17:25:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 603 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 180,688 KB
最終ジャッジ日時 2024-06-11 13:50:39
合計ジャッジ時間 9,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,248 KB
testcase_01 AC 39 ms
53,760 KB
testcase_02 AC 38 ms
53,888 KB
testcase_03 AC 472 ms
171,632 KB
testcase_04 AC 493 ms
171,884 KB
testcase_05 AC 474 ms
171,500 KB
testcase_06 AC 470 ms
171,760 KB
testcase_07 WA -
testcase_08 AC 438 ms
180,688 KB
testcase_09 AC 425 ms
180,688 KB
testcase_10 AC 256 ms
166,272 KB
testcase_11 AC 256 ms
166,992 KB
testcase_12 AC 145 ms
103,040 KB
testcase_13 AC 190 ms
103,936 KB
testcase_14 AC 482 ms
180,452 KB
testcase_15 AC 139 ms
103,552 KB
testcase_16 AC 165 ms
103,296 KB
testcase_17 AC 365 ms
176,172 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 341 ms
166,188 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 89 ms
100,864 KB
testcase_26 AC 38 ms
53,504 KB
testcase_27 AC 38 ms
53,376 KB
testcase_28 AC 38 ms
53,504 KB
testcase_29 AC 198 ms
138,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,P = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
A.sort()
B.sort()
from collections import Counter
c = Counter(B)
F = [0]*(P+1)
for i in range(1,P):
    F[i+1] = F[i] + c[i]
def is_ok(x):
    tmp = 0
    for a in A:
        if 0<=x-a<=P-1:
            tmp += F[x-a+1] - F[0]
            
        if P-a <= P-1:
            tmp += F[min(P-1,P+x-a)+1] - F[P-a]
        
    return tmp >= K
            
            
y = 2*P
x = -1
while y-x>1:
    mid = (y+x)//2
    
    if is_ok(mid):
        y = mid
    else:
        x = mid
print(y)
        
    
0