結果
問題 | No.2157 崖 |
ユーザー | ああいい |
提出日時 | 2022-12-11 15:02:50 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,442 ms / 6,000 ms |
コード長 | 756 bytes |
コンパイル時間 | 243 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 94,464 KB |
最終ジャッジ日時 | 2024-10-15 12:09:39 |
合計ジャッジ時間 | 14,510 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
import sys N,M = map(int,input().split()) D = [list(map(int,input().split())) for _ in range(N)] for i in range(N): D[i].sort() def calc(m): now = D[0].copy() for i in range(N - 1): nx = [] tmp = D[i + 1] j = 0 for a in now: while j < M: if tmp[j] < a:j += 1 elif tmp[j] > a + m:break else: nx.append(tmp[j]) j += 1 if len(nx) == 0:return False else: now = nx return True start = -1 end = 10 ** 9 if calc(end) == False: print(-1) exit() while end - start > 1: mid = end + start >> 1 if calc(mid): end = mid else: start = mid print(end)