結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 513 ms
171,628 KB
testcase_04 AC 522 ms
171,628 KB
testcase_05 AC 485 ms
171,636 KB
testcase_06 AC 484 ms
171,368 KB
testcase_07 WA -
testcase_08 AC 433 ms
180,564 KB
testcase_09 AC 433 ms
180,680 KB
testcase_10 AC 254 ms
166,276 KB
testcase_11 AC 261 ms
166,984 KB
testcase_12 AC 145 ms
103,296 KB
testcase_13 AC 194 ms
103,680 KB
testcase_14 AC 493 ms
180,712 KB
testcase_15 AC 137 ms
103,168 KB
testcase_16 AC 163 ms
103,424 KB
testcase_17 AC 366 ms
176,420 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 334 ms
166,192 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 87 ms
100,864 KB
testcase_26 AC 39 ms
53,760 KB
testcase_27 AC 38 ms
53,504 KB
testcase_28 AC 37 ms
53,760 KB
testcase_29 AC 212 ms
137,856 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,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