結果

問題 No.2157 崖
ユーザー terasaterasa
提出日時 2022-12-09 23:15:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,098 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,824 KB
実行使用メモリ 93,252 KB
最終ジャッジ日時 2024-10-14 22:53:28
合計ジャッジ時間 13,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
68,624 KB
testcase_01 AC 63 ms
68,928 KB
testcase_02 AC 63 ms
69,208 KB
testcase_03 AC 64 ms
67,868 KB
testcase_04 AC 64 ms
67,656 KB
testcase_05 AC 69 ms
70,544 KB
testcase_06 AC 64 ms
68,656 KB
testcase_07 AC 78 ms
72,324 KB
testcase_08 AC 68 ms
69,220 KB
testcase_09 AC 68 ms
70,300 KB
testcase_10 AC 66 ms
67,496 KB
testcase_11 AC 72 ms
71,476 KB
testcase_12 AC 64 ms
68,648 KB
testcase_13 AC 3,850 ms
93,252 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 #

from typing import List, Tuple, Callable, TypeVar, Optional
import sys
import itertools
import heapq
import bisect
import math
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key

input = sys.stdin.readline

if __file__ != 'prog.py':
    sys.setrecursionlimit(10 ** 6)


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


N, M = readints()
D = [readlist() for _ in range(N)]
for i in range(N):
    D[i].sort()


def judge(A, i, k):
    NA = []
    for d in D[i]:
        l = -1
        r = len(A)
        while r - l > 1:
            c = (l + r) >> 1
            if A[c] <= d:
                l = c
            else:
                r = c
        if l < 0:
            continue
        if d - A[l] <= k:
            NA.append(d)
    return NA


l = -1
r = 10 ** 9 + 10
while r - l > 1:
    c = (l + r) >> 1
    A = D[0]
    for i in range(1, N):
        A = judge(A, i, c)
        if not A:
            l = c
            break
    else:
        r = c
print(r if r < 10 ** 9 + 10 else -1)
0