結果

問題 No.1460 Max of Min
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-29 14:08:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,074 ms / 2,000 ms
コード長 1,085 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 76,888 KB
最終ジャッジ日時 2024-11-30 01:51:11
合計ジャッジ時間 40,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 37 ms
57,600 KB
testcase_03 AC 66 ms
65,792 KB
testcase_04 AC 1,074 ms
75,776 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 131 ms
75,008 KB
testcase_07 AC 978 ms
76,416 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 856 ms
76,160 KB
testcase_11 AC 483 ms
76,532 KB
testcase_12 AC 144 ms
76,160 KB
testcase_13 AC 557 ms
76,664 KB
testcase_14 AC 193 ms
76,416 KB
testcase_15 AC 128 ms
76,332 KB
testcase_16 AC 379 ms
76,416 KB
testcase_17 AC 433 ms
76,340 KB
testcase_18 AC 64 ms
70,272 KB
testcase_19 AC 344 ms
76,416 KB
testcase_20 AC 84 ms
76,380 KB
testcase_21 AC 119 ms
76,032 KB
testcase_22 AC 286 ms
76,288 KB
testcase_23 AC 82 ms
76,184 KB
testcase_24 AC 480 ms
76,032 KB
testcase_25 AC 65 ms
71,424 KB
testcase_26 AC 761 ms
76,240 KB
testcase_27 AC 204 ms
75,776 KB
testcase_28 AC 118 ms
75,776 KB
testcase_29 AC 618 ms
76,200 KB
testcase_30 AC 366 ms
76,392 KB
testcase_31 AC 234 ms
76,032 KB
testcase_32 AC 632 ms
76,492 KB
testcase_33 AC 170 ms
75,904 KB
testcase_34 AC 235 ms
76,508 KB
testcase_35 AC 147 ms
76,032 KB
testcase_36 AC 127 ms
76,544 KB
testcase_37 AC 351 ms
75,904 KB
testcase_38 AC 344 ms
76,288 KB
testcase_39 AC 245 ms
76,532 KB
testcase_40 AC 179 ms
76,160 KB
testcase_41 AC 137 ms
76,140 KB
testcase_42 AC 162 ms
75,904 KB
testcase_43 AC 293 ms
76,288 KB
testcase_44 AC 420 ms
76,184 KB
testcase_45 AC 81 ms
76,288 KB
testcase_46 AC 237 ms
76,416 KB
testcase_47 AC 276 ms
76,160 KB
testcase_48 AC 514 ms
76,652 KB
testcase_49 AC 268 ms
76,288 KB
testcase_50 AC 92 ms
75,776 KB
testcase_51 AC 442 ms
76,544 KB
testcase_52 AC 128 ms
76,416 KB
testcase_53 AC 279 ms
76,160 KB
testcase_54 AC 402 ms
76,324 KB
testcase_55 AC 521 ms
76,416 KB
testcase_56 AC 488 ms
76,696 KB
testcase_57 AC 726 ms
76,576 KB
testcase_58 AC 796 ms
76,544 KB
testcase_59 AC 547 ms
76,540 KB
testcase_60 AC 531 ms
76,312 KB
testcase_61 AC 533 ms
76,272 KB
testcase_62 AC 394 ms
76,416 KB
testcase_63 AC 745 ms
76,032 KB
testcase_64 AC 413 ms
76,160 KB
testcase_65 AC 743 ms
76,648 KB
testcase_66 AC 440 ms
76,416 KB
testcase_67 AC 412 ms
76,796 KB
testcase_68 AC 422 ms
76,416 KB
testcase_69 AC 830 ms
76,160 KB
testcase_70 AC 609 ms
76,104 KB
testcase_71 AC 552 ms
76,572 KB
testcase_72 AC 380 ms
76,160 KB
testcase_73 AC 592 ms
76,432 KB
testcase_74 AC 613 ms
76,484 KB
testcase_75 AC 475 ms
76,292 KB
testcase_76 AC 454 ms
76,548 KB
testcase_77 AC 441 ms
76,352 KB
testcase_78 AC 403 ms
76,288 KB
testcase_79 AC 365 ms
76,316 KB
testcase_80 AC 399 ms
76,604 KB
testcase_81 AC 380 ms
76,348 KB
testcase_82 AC 383 ms
76,544 KB
testcase_83 AC 412 ms
76,416 KB
testcase_84 AC 738 ms
76,288 KB
testcase_85 AC 720 ms
76,796 KB
testcase_86 AC 708 ms
76,456 KB
testcase_87 AC 755 ms
76,544 KB
testcase_88 AC 733 ms
76,032 KB
testcase_89 AC 742 ms
76,416 KB
testcase_90 AC 731 ms
76,532 KB
testcase_91 AC 760 ms
76,888 KB
testcase_92 AC 774 ms
76,460 KB
testcase_93 AC 713 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF=10**18+1;
#bool chmin(ll&a,ll b){return a>b?a=b,true:false;}
def check(X):
    b=[]
    for i in range(K-1,-1,-1):
        if B[i]>=X:
            b+=[K-i]
    if len(b)==0:
        return N<K and A[N]>=X
    M=b[0]
    dist=[INF for i in range(K+M)]
    seen=[False for i in range(K+M)]
    for i in range(K):
        if A[i]>=X:
            dist[i]=i
    for i in range(K+M):
        idx=-1
        mn=INF+1
        for j in range(K+M):
            if mn>dist[j] and (not seen[j]):
                idx=j
                mn=dist[j]
        seen[idx]=True
        for j in b:
            if idx<K:
                if idx+j>=K:
                    dist[K+(idx+j)%M]=min(dist[K+(idx+j)%M],dist[idx]+j)
            else:
                dist[K+(idx-K+j)%M]=min(dist[K+(idx-K+j)%M],dist[idx]+j)
    if N<K:
        return dist[N]<=N
    else:
        return dist[K+N%M]<=N
K,N=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
ok=-INF
ng=INF
while ng-ok>1:
    mid=(ok+ng)//2
    if check(mid):
        ok=mid
    else:
        ng=mid
print(ok)
0