結果

問題 No.1460 Max of Min
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-29 14:27:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,033 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,648 KB
最終ジャッジ日時 2024-11-29 10:00:19
合計ジャッジ時間 212,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,128 KB
testcase_01 AC 27 ms
21,760 KB
testcase_02 AC 27 ms
15,872 KB
testcase_03 AC 389 ms
21,760 KB
testcase_04 TLE -
testcase_05 AC 28 ms
21,632 KB
testcase_06 AC 989 ms
16,256 KB
testcase_07 TLE -
testcase_08 AC 28 ms
16,000 KB
testcase_09 AC 27 ms
21,632 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 797 ms
16,000 KB
testcase_13 TLE -
testcase_14 AC 1,388 ms
16,128 KB
testcase_15 AC 680 ms
21,760 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 69 ms
16,128 KB
testcase_19 TLE -
testcase_20 AC 125 ms
16,000 KB
testcase_21 AC 497 ms
21,632 KB
testcase_22 TLE -
testcase_23 AC 98 ms
21,760 KB
testcase_24 TLE -
testcase_25 AC 53 ms
16,128 KB
testcase_26 TLE -
testcase_27 AC 1,731 ms
21,632 KB
testcase_28 AC 190 ms
16,000 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,984 ms
21,760 KB
testcase_32 TLE -
testcase_33 AC 1,222 ms
21,760 KB
testcase_34 AC 1,865 ms
17,824 KB
testcase_35 AC 810 ms
21,504 KB
testcase_36 AC 883 ms
15,872 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 1,201 ms
16,128 KB
testcase_41 AC 739 ms
21,376 KB
testcase_42 AC 979 ms
16,000 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 132 ms
21,632 KB
testcase_46 AC 1,902 ms
17,696 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 178 ms
15,872 KB
testcase_51 TLE -
testcase_52 AC 657 ms
16,000 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 TLE -
testcase_91 TLE -
testcase_92 TLE -
testcase_93 TLE -
権限があれば一括ダウンロードができます

ソースコード

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