結果

問題 No.2157 崖
ユーザー H20H20
提出日時 2022-12-09 22:37:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 925 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 151,488 KB
最終ジャッジ日時 2024-10-14 22:30:32
合計ジャッジ時間 15,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,020 KB
testcase_01 AC 42 ms
53,120 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 46 ms
59,008 KB
testcase_04 AC 40 ms
52,736 KB
testcase_05 AC 50 ms
61,568 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 65 ms
69,376 KB
testcase_08 AC 47 ms
57,728 KB
testcase_09 AC 47 ms
59,392 KB
testcase_10 AC 39 ms
52,608 KB
testcase_11 AC 56 ms
63,360 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 5,453 ms
128,768 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import itertools
def is_ok(v):
    S = list(range(len(D[0])))
    for i in range(N-1):
        ND = D[i+1]
        IMOS = [0]*(len(ND)+1)
        for s in S:
            d = D[i][s]
            l = bisect.bisect_left(ND,d)
            r = bisect.bisect_right(ND,d+v)
            IMOS[l]+=1
            IMOS[r]-=1
        NS = []
        L = list(itertools.accumulate(IMOS))
        for j,l in enumerate(L):
            if l>0 and j<len(ND):
                NS.append(j)
        S = NS
    return S

def meguru_bisect(ng, ok):
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ok = mid
        else:
            ng = mid
    return ok

N,M = map(int, input().split())
L = [list(map(int, input().split())) for _ in range(N)]
D = []
for l in L:
    D.append(sorted(list(set(l))))
ans = meguru_bisect(-1, 10**9+100)
if ans == 10**9+100:
    print(-1)
else:
    print(ans)
0