結果

問題 No.1460 Max of Min
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-29 14:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,181 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 76,940 KB
最終ジャッジ日時 2024-05-07 10:07:34
合計ジャッジ時間 43,962 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 40 ms
57,472 KB
testcase_03 AC 74 ms
65,792 KB
testcase_04 AC 1,181 ms
76,160 KB
testcase_05 AC 38 ms
52,736 KB
testcase_06 AC 146 ms
74,676 KB
testcase_07 AC 1,064 ms
76,736 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 38 ms
52,480 KB
testcase_10 AC 948 ms
76,644 KB
testcase_11 AC 530 ms
76,544 KB
testcase_12 AC 155 ms
76,060 KB
testcase_13 AC 619 ms
76,672 KB
testcase_14 AC 212 ms
76,416 KB
testcase_15 AC 143 ms
76,472 KB
testcase_16 AC 417 ms
76,800 KB
testcase_17 AC 491 ms
76,496 KB
testcase_18 AC 71 ms
70,400 KB
testcase_19 AC 382 ms
76,636 KB
testcase_20 AC 89 ms
76,288 KB
testcase_21 AC 130 ms
76,544 KB
testcase_22 AC 314 ms
76,544 KB
testcase_23 AC 88 ms
76,160 KB
testcase_24 AC 529 ms
76,544 KB
testcase_25 AC 70 ms
71,808 KB
testcase_26 AC 813 ms
76,468 KB
testcase_27 AC 224 ms
76,288 KB
testcase_28 AC 128 ms
76,416 KB
testcase_29 AC 666 ms
76,472 KB
testcase_30 AC 406 ms
76,800 KB
testcase_31 AC 251 ms
76,544 KB
testcase_32 AC 697 ms
76,492 KB
testcase_33 AC 187 ms
76,784 KB
testcase_34 AC 247 ms
76,708 KB
testcase_35 AC 161 ms
76,672 KB
testcase_36 AC 139 ms
76,312 KB
testcase_37 AC 388 ms
76,468 KB
testcase_38 AC 382 ms
76,384 KB
testcase_39 AC 272 ms
76,416 KB
testcase_40 AC 194 ms
75,904 KB
testcase_41 AC 153 ms
76,416 KB
testcase_42 AC 170 ms
76,288 KB
testcase_43 AC 317 ms
76,496 KB
testcase_44 AC 470 ms
76,672 KB
testcase_45 AC 92 ms
76,208 KB
testcase_46 AC 254 ms
76,440 KB
testcase_47 AC 304 ms
76,416 KB
testcase_48 AC 560 ms
76,708 KB
testcase_49 AC 294 ms
76,844 KB
testcase_50 AC 98 ms
76,160 KB
testcase_51 AC 483 ms
76,416 KB
testcase_52 AC 141 ms
76,288 KB
testcase_53 AC 306 ms
76,416 KB
testcase_54 AC 446 ms
76,476 KB
testcase_55 AC 580 ms
76,592 KB
testcase_56 AC 533 ms
76,568 KB
testcase_57 AC 781 ms
76,440 KB
testcase_58 AC 868 ms
76,480 KB
testcase_59 AC 602 ms
76,732 KB
testcase_60 AC 563 ms
76,572 KB
testcase_61 AC 584 ms
76,396 KB
testcase_62 AC 427 ms
76,532 KB
testcase_63 AC 812 ms
76,620 KB
testcase_64 AC 460 ms
76,544 KB
testcase_65 AC 809 ms
76,916 KB
testcase_66 AC 480 ms
76,740 KB
testcase_67 AC 448 ms
76,580 KB
testcase_68 AC 458 ms
76,672 KB
testcase_69 AC 919 ms
76,940 KB
testcase_70 AC 666 ms
76,484 KB
testcase_71 AC 612 ms
76,616 KB
testcase_72 AC 420 ms
76,544 KB
testcase_73 AC 644 ms
76,668 KB
testcase_74 AC 668 ms
76,544 KB
testcase_75 AC 495 ms
76,556 KB
testcase_76 AC 502 ms
76,416 KB
testcase_77 AC 480 ms
76,488 KB
testcase_78 AC 428 ms
76,836 KB
testcase_79 AC 403 ms
76,456 KB
testcase_80 AC 437 ms
76,740 KB
testcase_81 AC 419 ms
76,672 KB
testcase_82 AC 432 ms
76,556 KB
testcase_83 AC 456 ms
76,628 KB
testcase_84 AC 817 ms
76,672 KB
testcase_85 AC 792 ms
76,640 KB
testcase_86 AC 791 ms
76,416 KB
testcase_87 AC 829 ms
76,600 KB
testcase_88 AC 809 ms
76,416 KB
testcase_89 AC 807 ms
76,672 KB
testcase_90 AC 796 ms
76,544 KB
testcase_91 AC 839 ms
76,588 KB
testcase_92 AC 844 ms
76,544 KB
testcase_93 AC 789 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF=10**18+1
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