結果

問題 No.2157 崖
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-19 15:49:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 520 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 123,524 KB
最終ジャッジ日時 2024-09-30 05:33:15
合計ジャッジ時間 16,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 45 ms
58,880 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 54 ms
63,616 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 78 ms
71,808 KB
testcase_08 AC 44 ms
57,856 KB
testcase_09 AC 49 ms
59,648 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 61 ms
66,560 KB
testcase_12 AC 39 ms
52,480 KB
testcase_13 AC 4,742 ms
103,876 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=[]
for i in range(n):
	a+=[list(map(int,input().split()))]
	a[-1].sort()
from bisect import bisect_left,bisect_right
X=10**9+1
ok=X
ng=-1
while ok-ng>1:
	mid=(ok+ng)//2
	q=[1]*(m+1)
	q[m]=0
	for i in range(1,n):
		nq=[0]*(m+1)
		for j in range(m):
			if q[j]:
				l=bisect_left(a[i],a[i-1][j])
				r=bisect_right(a[i],a[i-1][j]+mid)
				nq[l]+=1
				nq[r]-=1
		for j in range(m):
			nq[j+1]+=nq[j]
			nq[j]=int(nq[j]>0)
		q=nq
	if any(q):
		ok=mid
	else:
		ng=mid
print(ok if ok<X else -1)
0