結果

問題 No.1460 Max of Min
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-29 14:35:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,044 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-11-29 10:04:40
合計ジャッジ時間 43,609 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,696 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
16,000 KB
testcase_03 AC 176 ms
18,088 KB
testcase_04 TLE -
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 52 ms
11,008 KB
testcase_07 TLE -
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 TLE -
testcase_11 AC 1,031 ms
10,880 KB
testcase_12 AC 45 ms
10,752 KB
testcase_13 AC 92 ms
11,008 KB
testcase_14 AC 56 ms
10,880 KB
testcase_15 AC 43 ms
10,880 KB
testcase_16 AC 81 ms
10,880 KB
testcase_17 AC 70 ms
10,880 KB
testcase_18 AC 33 ms
10,880 KB
testcase_19 AC 70 ms
11,008 KB
testcase_20 AC 33 ms
10,880 KB
testcase_21 AC 35 ms
10,752 KB
testcase_22 AC 70 ms
11,008 KB
testcase_23 AC 34 ms
10,880 KB
testcase_24 AC 78 ms
11,008 KB
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 97 ms
11,008 KB
testcase_27 AC 54 ms
10,752 KB
testcase_28 AC 35 ms
10,752 KB
testcase_29 AC 85 ms
10,880 KB
testcase_30 AC 85 ms
10,880 KB
testcase_31 AC 64 ms
11,008 KB
testcase_32 AC 120 ms
10,880 KB
testcase_33 AC 59 ms
10,880 KB
testcase_34 AC 62 ms
10,880 KB
testcase_35 AC 47 ms
10,880 KB
testcase_36 AC 331 ms
10,752 KB
testcase_37 AC 76 ms
10,752 KB
testcase_38 AC 90 ms
10,880 KB
testcase_39 AC 62 ms
11,008 KB
testcase_40 AC 53 ms
10,880 KB
testcase_41 AC 45 ms
10,880 KB
testcase_42 AC 53 ms
10,752 KB
testcase_43 AC 61 ms
10,880 KB
testcase_44 AC 88 ms
10,880 KB
testcase_45 AC 34 ms
10,752 KB
testcase_46 AC 57 ms
11,008 KB
testcase_47 AC 64 ms
10,880 KB
testcase_48 AC 90 ms
10,880 KB
testcase_49 AC 73 ms
11,008 KB
testcase_50 AC 36 ms
10,752 KB
testcase_51 AC 75 ms
10,880 KB
testcase_52 AC 43 ms
10,752 KB
testcase_53 AC 75 ms
11,008 KB
testcase_54 AC 101 ms
10,880 KB
testcase_55 AC 113 ms
11,008 KB
testcase_56 AC 119 ms
11,008 KB
testcase_57 AC 97 ms
11,008 KB
testcase_58 AC 88 ms
11,008 KB
testcase_59 AC 103 ms
11,008 KB
testcase_60 AC 102 ms
10,880 KB
testcase_61 AC 115 ms
10,880 KB
testcase_62 AC 94 ms
11,008 KB
testcase_63 TLE -
testcase_64 AC 132 ms
11,008 KB
testcase_65 AC 114 ms
10,880 KB
testcase_66 AC 101 ms
11,008 KB
testcase_67 AC 100 ms
10,880 KB
testcase_68 AC 86 ms
10,880 KB
testcase_69 AC 139 ms
11,008 KB
testcase_70 AC 123 ms
11,008 KB
testcase_71 AC 95 ms
11,008 KB
testcase_72 AC 88 ms
11,008 KB
testcase_73 AC 144 ms
10,880 KB
testcase_74 AC 119 ms
10,880 KB
testcase_75 AC 114 ms
11,008 KB
testcase_76 AC 105 ms
10,880 KB
testcase_77 AC 99 ms
11,008 KB
testcase_78 AC 93 ms
11,008 KB
testcase_79 AC 88 ms
10,880 KB
testcase_80 AC 105 ms
11,008 KB
testcase_81 AC 93 ms
11,008 KB
testcase_82 AC 94 ms
10,880 KB
testcase_83 AC 111 ms
11,008 KB
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 #

import heapq
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)]
    Q=[]
    for i in range(K):
        if A[i]>=X:
            dist[i]=i
            heapq.heappush(Q,(i,i))
    while Q:
        c,v=heapq.heappop(Q)
        if dist[v]<c:
            continue
        for j in b:
            if v<K:
                if v+j>=K and dist[K+(v+j)%M]>c+j:
                    dist[K+(v+j)%M]=c+j
                    heapq.heappush(Q,(c+j,K+(v+j)%M))
            else:
                if dist[K+(v-K+j)%M]>c+j:
                    dist[K+(v-K+j)%M]=c+j
                    heapq.heappush(Q,(c+j,K+(v-K+j)%M))
    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