結果

問題 No.1460 Max of Min
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-29 14:08:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,033 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-11-29 09:56:20
合計ジャッジ時間 216,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 31 ms
22,016 KB
testcase_02 AC 32 ms
16,128 KB
testcase_03 AC 424 ms
21,888 KB
testcase_04 TLE -
testcase_05 AC 32 ms
16,256 KB
testcase_06 AC 1,061 ms
16,384 KB
testcase_07 TLE -
testcase_08 AC 31 ms
16,128 KB
testcase_09 AC 31 ms
21,632 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 877 ms
16,128 KB
testcase_13 TLE -
testcase_14 AC 1,525 ms
16,128 KB
testcase_15 AC 736 ms
21,888 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 78 ms
16,128 KB
testcase_19 TLE -
testcase_20 AC 139 ms
16,128 KB
testcase_21 AC 544 ms
21,632 KB
testcase_22 TLE -
testcase_23 AC 112 ms
16,128 KB
testcase_24 TLE -
testcase_25 AC 62 ms
21,888 KB
testcase_26 TLE -
testcase_27 AC 1,896 ms
21,760 KB
testcase_28 AC 212 ms
16,128 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 1,372 ms
21,760 KB
testcase_34 TLE -
testcase_35 AC 921 ms
21,888 KB
testcase_36 AC 974 ms
16,128 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 1,326 ms
16,000 KB
testcase_41 AC 820 ms
22,016 KB
testcase_42 AC 1,077 ms
16,128 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 141 ms
21,888 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 204 ms
16,000 KB
testcase_51 TLE -
testcase_52 AC 723 ms
16,128 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