結果

問題 No.1597 Matrix Sort
ユーザー roarisroaris
提出日時 2021-07-12 10:44:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 962 ms / 1,500 ms
コード長 652 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 374,680 KB
最終ジャッジ日時 2024-07-02 03:23:17
合計ジャッジ時間 18,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 962 ms
373,832 KB
testcase_04 AC 898 ms
373,440 KB
testcase_05 AC 919 ms
373,320 KB
testcase_06 AC 925 ms
373,436 KB
testcase_07 AC 939 ms
373,440 KB
testcase_08 AC 860 ms
374,580 KB
testcase_09 AC 868 ms
374,496 KB
testcase_10 AC 798 ms
372,988 KB
testcase_11 AC 812 ms
374,680 KB
testcase_12 AC 105 ms
101,504 KB
testcase_13 AC 191 ms
162,120 KB
testcase_14 AC 929 ms
374,576 KB
testcase_15 AC 113 ms
102,016 KB
testcase_16 AC 189 ms
162,940 KB
testcase_17 AC 870 ms
374,380 KB
testcase_18 AC 905 ms
373,180 KB
testcase_19 AC 868 ms
373,440 KB
testcase_20 AC 832 ms
373,120 KB
testcase_21 AC 832 ms
373,204 KB
testcase_22 AC 834 ms
373,356 KB
testcase_23 AC 814 ms
373,368 KB
testcase_24 AC 87 ms
97,792 KB
testcase_25 AC 83 ms
96,128 KB
testcase_26 AC 41 ms
52,224 KB
testcase_27 AC 39 ms
51,968 KB
testcase_28 AC 40 ms
51,712 KB
testcase_29 AC 789 ms
348,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def judge(x):
    cnt = 0
    
    for Ai in A:
        if x>=Ai:
            cnt += acc[x-Ai+1]+acc[P]-acc[P-Ai]
        else:
            cnt += acc[P-Ai+x+1]-acc[P-Ai]
    
    return cnt>=K
            
def binary_search():
    l, r = 0, P-1
    
    while l<=r:
        m = (l+r)//2
        
        if judge(m):
            r = m-1
        else:
            l = m+1
    
    return l

N, K, P = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [0]*P

for Bi in B:
    C[Bi] += 1

acc = [0]

for Ci in C:
    acc.append(acc[-1]+Ci)

print(binary_search())
0