結果

問題 No.2157 崖
ユーザー rlangevinrlangevin
提出日時 2024-01-23 12:05:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,368 ms / 6,000 ms
コード長 829 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 94,720 KB
最終ジャッジ日時 2024-09-28 06:41:59
合計ジャッジ時間 14,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 36 ms
52,608 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 43 ms
59,648 KB
testcase_12 AC 35 ms
52,352 KB
testcase_13 AC 1,969 ms
92,032 KB
testcase_14 AC 465 ms
92,416 KB
testcase_15 AC 2,157 ms
92,108 KB
testcase_16 AC 1,942 ms
91,776 KB
testcase_17 AC 406 ms
91,264 KB
testcase_18 AC 393 ms
91,008 KB
testcase_19 AC 2,368 ms
94,588 KB
testcase_20 AC 491 ms
94,336 KB
testcase_21 AC 504 ms
94,720 KB
testcase_22 AC 383 ms
90,368 KB
testcase_23 AC 37 ms
52,096 KB
testcase_24 AC 62 ms
72,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
D = []
for i in range(N):
    D.append(list(map(int, input().split())))
    D[i].sort()

def check(m):
    pre = [1] * M
    Dpre = D[0]
    for i in range(1, N):
        dp = [0] * M
        Di = D[i]
        now = 0
        for j in range(M):
            while now < M:
                if Di[j] < Dpre[now]:
                    break
                if pre[now] and Dpre[now] <= Di[j] <= Dpre[now] + m:
                    dp[j] = 1
                    break
                now += 1
        dp, pre = pre, dp
        Dpre, Di = Di, Dpre
    return sum(pre)  
    
yes = 10 ** 9 + 5
no = -1
if not check(yes):
    print(-1)
    exit()

while yes - no != 1:
    mid = (yes + no)//2
    if check(mid):
        yes = mid
    else:
        no = mid
print(yes)
0