結果

問題 No.2157 崖
ユーザー KowerKoint2010KowerKoint2010
提出日時 2022-12-08 22:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,233 ms / 6,000 ms
コード長 763 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 96,416 KB
最終ジャッジ日時 2024-10-14 18:02:10
合計ジャッジ時間 37,607 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 47 ms
59,008 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 49 ms
59,136 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 60 ms
63,232 KB
testcase_08 AC 48 ms
52,352 KB
testcase_09 AC 43 ms
52,992 KB
testcase_10 AC 42 ms
51,712 KB
testcase_11 AC 56 ms
61,056 KB
testcase_12 AC 42 ms
52,224 KB
testcase_13 AC 2,436 ms
90,528 KB
testcase_14 AC 3,770 ms
94,440 KB
testcase_15 AC 2,772 ms
89,636 KB
testcase_16 AC 2,686 ms
89,776 KB
testcase_17 AC 2,605 ms
92,416 KB
testcase_18 AC 3,062 ms
92,592 KB
testcase_19 AC 3,138 ms
93,256 KB
testcase_20 AC 3,667 ms
95,708 KB
testcase_21 AC 4,233 ms
96,416 KB
testcase_22 AC 2,670 ms
92,088 KB
testcase_23 AC 40 ms
51,712 KB
testcase_24 AC 99 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, map(int, input().split()))
d = [list(map(int, input().split())) for _ in range(n)]
for i in range(n):
    d[i].sort()
ok = 10**9
ng = -1
while ok - ng > 1:
    mid = (ok + ng) // 2
    bs = [True] * m
    for i in range(n-1):
        dp = [0] * (m+1)
        k1 = 0
        k2 = 0
        for j in range(m):
            if not bs[j]:
                continue
            while k1 < m and d[i+1][k1] - d[i][j] < 0:
                k1 += 1
            while k2 < m and d[i+1][k2] - d[i][j] <= mid:
                k2 += 1
            dp[k1] += 1
            dp[k2] -= 1
        for j in range(m):
            bs[j] = dp[j] > 0
            dp[j+1] += dp[j]
    if any(bs):
        ok = mid
    else:
        ng = mid
print(-1 if ok == 10**9 else ok)
0