結果

問題 No.2157 崖
ユーザー flygonflygon
提出日時 2022-12-09 23:42:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,587 ms / 6,000 ms
コード長 1,023 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 98,428 KB
最終ジャッジ日時 2024-10-14 23:11:05
合計ジャッジ時間 41,260 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,656 KB
testcase_01 AC 46 ms
54,528 KB
testcase_02 AC 46 ms
54,272 KB
testcase_03 AC 54 ms
62,848 KB
testcase_04 AC 45 ms
54,912 KB
testcase_05 AC 55 ms
63,616 KB
testcase_06 AC 47 ms
55,168 KB
testcase_07 AC 65 ms
64,896 KB
testcase_08 AC 47 ms
55,552 KB
testcase_09 AC 47 ms
55,424 KB
testcase_10 AC 46 ms
54,656 KB
testcase_11 AC 59 ms
64,640 KB
testcase_12 AC 46 ms
55,040 KB
testcase_13 AC 3,720 ms
91,136 KB
testcase_14 AC 4,231 ms
96,128 KB
testcase_15 AC 3,530 ms
91,392 KB
testcase_16 AC 3,690 ms
90,856 KB
testcase_17 AC 3,591 ms
93,516 KB
testcase_18 AC 3,632 ms
93,824 KB
testcase_19 AC 4,587 ms
94,716 KB
testcase_20 AC 3,647 ms
98,428 KB
testcase_21 AC 4,207 ms
98,048 KB
testcase_22 AC 3,288 ms
92,672 KB
testcase_23 AC 42 ms
54,900 KB
testcase_24 AC 97 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,m = map(int,input().split())
d  = [[-1] + list(map(int,input().split())) for i in range(n)]
for i in range(n):
  d[i].sort()
  
m+= 1
_ = [i for i in range(m)]
l = -1
r = 10**9+10
while r-l > 1:
  mid = (r+l)//2
  dp = _[::1]
  for i in range(1, n):
    dd = d[i]
    new = [0]*(m)
    ll = 0
    rr = 0
    for j in range(1,m):
      new[j] = new[j-1]
      bot =max(1, d[i][j] - mid)
      top = d[i][j]
      while ll < m-1 and d[i-1][ll+1] < bot:
        ll += 1
      while rr < m-1 and d[i-1][rr+1] <= top:
        rr += 1
        if rr == m: break
      tmp = dp[rr] - dp[ll]
      if tmp > 0:
        new[j] += 1
    dp = new
  if dp[-1] == 0 :
    l = mid
  else:
    r = mid
ans = r
print(ans) if ans != 10**9+10 else print(-1)
0