結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,248 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 458 ms
171,488 KB
testcase_04 AC 497 ms
172,128 KB
testcase_05 AC 491 ms
172,000 KB
testcase_06 AC 479 ms
172,120 KB
testcase_07 AC 475 ms
171,492 KB
testcase_08 AC 437 ms
180,704 KB
testcase_09 AC 436 ms
180,592 KB
testcase_10 AC 263 ms
166,004 KB
testcase_11 AC 262 ms
167,148 KB
testcase_12 AC 156 ms
103,424 KB
testcase_13 AC 199 ms
103,424 KB
testcase_14 AC 489 ms
180,988 KB
testcase_15 AC 145 ms
103,296 KB
testcase_16 AC 171 ms
103,680 KB
testcase_17 AC 386 ms
177,092 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 339 ms
167,108 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 99 ms
101,120 KB
testcase_25 AC 87 ms
100,608 KB
testcase_26 AC 41 ms
53,248 KB
testcase_27 AC 38 ms
53,376 KB
testcase_28 AC 39 ms
53,504 KB
testcase_29 AC 204 ms
138,240 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 = P-1
if P == 1:
    print(0)
    exit()
x = 0
if is_ok(0):
    print(0)
    exit()
while y-x>1:
    mid = (y+x)//2
    
    if is_ok(mid):
        y = mid
    else:
        x = mid
print(y)
        
    
0