結果

問題 No.2157 崖
ユーザー shobonvipshobonvip
提出日時 2022-12-09 21:51:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 111,596 KB
最終ジャッジ日時 2024-10-14 21:36:12
合計ジャッジ時間 8,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,100 KB
testcase_01 AC 38 ms
53,076 KB
testcase_02 AC 37 ms
53,144 KB
testcase_03 AC 38 ms
52,408 KB
testcase_04 AC 38 ms
53,652 KB
testcase_05 AC 38 ms
53,704 KB
testcase_06 AC 39 ms
53,800 KB
testcase_07 AC 38 ms
52,880 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,864 KB
testcase_11 WA -
testcase_12 AC 39 ms
53,308 KB
testcase_13 WA -
testcase_14 AC 664 ms
108,800 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 541 ms
104,144 KB
testcase_18 AC 568 ms
103,592 KB
testcase_19 WA -
testcase_20 AC 716 ms
111,596 KB
testcase_21 AC 721 ms
111,232 KB
testcase_22 AC 545 ms
102,912 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 AC 80 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,input().split())
d = [list(map(int,input().split())) for i in range(n)]
for i in range(n):
	d[i].sort()
e = [[0] * m for i in range(n-1)]

for i in range(n-1):
	pivot = 0
	for j in range(m):
		while pivot < m and (pivot < 0 or d[i][pivot] <= d[i+1][j]):
			pivot += 1
		pivot -= 1
		e[i][j] = pivot

dp = [0] * m
for i in range(n-1):
	ndp = [10**18] * (m)
	for j in range(m):
		if e[i][j] >= 0:
			ndp[j] = max(dp[e[i][j]], d[i+1][j] - d[i][e[i][j]])
	dp = ndp

#print(dp)

if min(dp) >= 10**14:
	print(-1)
else:
	print(min(dp))
0