結果
問題 | No.2157 崖 |
ユーザー | H20 |
提出日時 | 2022-12-09 22:59:51 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 901 bytes |
コンパイル時間 | 297 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 166,400 KB |
最終ジャッジ日時 | 2024-10-14 22:44:56 |
合計ジャッジ時間 | 14,136 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,608 KB |
testcase_01 | AC | 40 ms
52,864 KB |
testcase_02 | AC | 39 ms
52,480 KB |
testcase_03 | AC | 44 ms
59,520 KB |
testcase_04 | AC | 38 ms
52,480 KB |
testcase_05 | AC | 50 ms
61,440 KB |
testcase_06 | AC | 38 ms
52,864 KB |
testcase_07 | AC | 60 ms
67,584 KB |
testcase_08 | AC | 44 ms
58,368 KB |
testcase_09 | AC | 48 ms
60,544 KB |
testcase_10 | AC | 39 ms
52,224 KB |
testcase_11 | AC | 57 ms
64,640 KB |
testcase_12 | AC | 40 ms
52,736 KB |
testcase_13 | AC | 3,869 ms
124,828 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
from bisect import bisect_left,bisect_right from itertools import accumulate def is_ok(v): S = D[0] for ND in D[1:]: IMOS = [0]*(len(ND)+1) for s in S: l = bisect_left(ND,s) r = bisect_right(ND,s+v) IMOS[l]+=1 IMOS[r]-=1 NS = [] L = list(accumulate(IMOS)) for j,l in enumerate(L): if l>0 and j<len(ND): NS.append(ND[j]) S = NS return S 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)))) ng = -1 ok = 10**9+100 #早くなることを祈って… if is_ok(5*10**7): ok = 5*10**7 else: ng = 5*10**7 while (abs(ok - ng) > 1): mid = (ok + ng) // 2 if is_ok(mid): ok = mid else: ng = mid if ok == 10**9+100: print(-1) else: print(ok)