結果

問題 No.2157 崖
ユーザー iseeisee
提出日時 2022-12-10 01:19:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 962 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 103,352 KB
最終ジャッジ日時 2024-10-14 23:26:28
合計ジャッジ時間 42,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 43 ms
58,752 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 44 ms
60,288 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 50 ms
60,416 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 57 ms
62,336 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 5,262 ms
91,776 KB
testcase_14 AC 5,393 ms
95,872 KB
testcase_15 AC 4,790 ms
92,032 KB
testcase_16 AC 5,138 ms
92,848 KB
testcase_17 AC 4,951 ms
93,128 KB
testcase_18 AC 4,359 ms
92,672 KB
testcase_19 TLE -
testcase_20 AC 5,517 ms
97,920 KB
testcase_21 TLE -
testcase_22 AC 4,165 ms
91,648 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 72 ms
72,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def main():
    # 入力
    N, M = map(int, input().split())
    D = [sorted(list(map(int, input().split()))) for _ in range(N)]
    # 計算・出力        
    ng = -1
    ok = 10**9
    while abs(ng-ok) > 1:
        mid = (ok+ng)//2

        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] - mid:
                    bool -= 1 if dp[l] else 0
                    l += 1
                dp0[j] = (bool > 0)
            dp = dp0
        
        if any(dp) : # ここ頑張る
            ok = mid
        else:
            ng = mid
    print(ok if ok != 10**9 else -1)

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