結果

問題 No.1597 Matrix Sort
ユーザー 👑 KazunKazun
提出日時 2021-07-09 21:58:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 566 ms / 1,500 ms
コード長 1,233 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 322,240 KB
最終ジャッジ日時 2024-07-01 16:18:10
合計ジャッジ時間 10,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

def General_Binary_Increase_Search_Integer(L,R,cond,default=None):
    """条件式が単調増加であるとき, 整数上で二部探索を行う.
    L: 解の下限
    R: 解の上限
    cond: 条件(1変数関数, 広義単調増加を満たす)
    default: Rで条件を満たさないときの返り値
    """
    if not(cond(R)): return default

    if cond(L): return L

    R+=1
    while R-L>1:
        C=L+(R-L)//2
        if cond(C): R=C
        else: L=C
    return R
#=================================================
def cum(A,l,r):
    if l:
        return A[r]-A[l-1]
    else:
        return A[r]
#=================================================
def check(x):
    M=0
    for a in A:
        l=max(0,-a); r=min(P-1,x-a)
        if l<=r:
            M+=cum(B_cum,l,r)

        l=max(0,P-a); r=min(P-1,P+x-a)
        if l<=r:
            M+=cum(B_cum,l,r)
    return M>=K
#=================================================
N,K,P=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

B_cnt=[0]*P
for b in B:
    B_cnt[b]+=1

B_cum=[0]*(2*P); B_cum[0]=B[0]
for i in range(2*P):
    B_cum[i]=B_cum[i-1]+B_cnt[i%P]

print(General_Binary_Increase_Search_Integer(0,P-1,check))
0