結果

問題 No.2157 崖
ユーザー iseeisee
提出日時 2022-12-10 01:06:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,040 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,564 KB
最終ジャッジ日時 2024-10-14 23:24:56
合計ジャッジ時間 44,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 46 ms
59,008 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 45 ms
58,752 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 52 ms
60,800 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 54 ms
62,336 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 AC 5,515 ms
91,776 KB
testcase_14 TLE -
testcase_15 AC 5,041 ms
92,032 KB
testcase_16 AC 5,352 ms
92,928 KB
testcase_17 AC 5,134 ms
92,928 KB
testcase_18 AC 4,556 ms
93,184 KB
testcase_19 TLE -
testcase_20 AC 5,859 ms
97,664 KB
testcase_21 TLE -
testcase_22 AC 4,319 ms
92,160 KB
testcase_23 AC 39 ms
52,224 KB
testcase_24 AC 67 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

def main():
    # 入力
    N, M = map(int, input().split())
    if N == 1:
        print(0)
        return
    D = [sorted(list(map(int, input().split()))) for _ in range(N)]
    # 計算・出力
    def isOK(d):
        dp = [True]*M
        for i in range(1, N):
            dp0 = [False]*M
            l = 0
            r = 0
            bool = 0
            for j in range(M):
                while r < M and D[i-1][r] <= D[i][j]:
                    bool += 1 if dp[r] else 0
                    r += 1
                while l < M and D[i-1][l] < D[i][j] - d:
                    bool -= 1 if dp[l] else 0
                    l += 1
                dp0[j] = (bool > 0)
            dp = dp0
        return any(dp)
        
    ng = -1
    ok = 10**9
    while abs(ng-ok) > 1:
        mid = (ok+ng)//2
        if isOK(mid) : # ここ頑張る
            ok = mid
        else:
            ng = mid
    print(ok if ok != 10**9 else -1)

if __name__ == "__main__":
    main()
0