結果

問題 No.2157 崖
ユーザー lloyzlloyz
提出日時 2024-01-05 20:44:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,565 ms / 6,000 ms
コード長 796 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 94,328 KB
最終ジャッジ日時 2024-09-27 19:09:53
合計ジャッジ時間 13,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 36 ms
52,144 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 33 ms
51,888 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 34 ms
52,224 KB
testcase_09 AC 40 ms
51,812 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 41 ms
58,752 KB
testcase_12 AC 35 ms
52,352 KB
testcase_13 AC 1,102 ms
89,984 KB
testcase_14 AC 438 ms
92,416 KB
testcase_15 AC 1,536 ms
91,328 KB
testcase_16 AC 1,565 ms
90,552 KB
testcase_17 AC 371 ms
90,752 KB
testcase_18 AC 374 ms
90,040 KB
testcase_19 AC 1,507 ms
93,184 KB
testcase_20 AC 462 ms
94,328 KB
testcase_21 AC 490 ms
94,284 KB
testcase_22 AC 420 ms
89,936 KB
testcase_23 AC 35 ms
52,096 KB
testcase_24 AC 53 ms
67,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, m = map(int, input().split())
D = []
for _ in range(n):
    L = list(map(int, input().split()))
    L.sort()
    D.append(L)

def calc(val):
    DP = D[0].copy()
    for i in range(n - 1):
        NDP = []
        j = 0
        for curr in DP:
            while j < m:
                if D[i + 1][j] < curr:
                    j += 1
                elif D[i + 1][j] > curr + val:
                    break
                else:
                    NDP.append(D[i + 1][j])
                    j += 1
        if len(NDP) == 0:
            return False
        DP = NDP
    return True

l, r = -1, 10**9
if not calc(r):
    print(-1)
    exit()

while r - l > 1:
    mid = (l + r) // 2
    if calc(mid):
        r = mid
    else:
        l = mid
print(r)
0