結果
問題 | No.2157 崖 |
ユーザー | achapi |
提出日時 | 2022-12-09 22:29:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,079 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 82,152 KB |
実行使用メモリ | 95,488 KB |
最終ジャッジ日時 | 2024-10-14 22:26:45 |
合計ジャッジ時間 | 9,509 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,992 KB |
testcase_01 | AC | 43 ms
58,496 KB |
testcase_02 | AC | 39 ms
52,608 KB |
testcase_03 | AC | 38 ms
52,608 KB |
testcase_04 | AC | 38 ms
52,608 KB |
testcase_05 | AC | 42 ms
57,728 KB |
testcase_06 | AC | 39 ms
52,992 KB |
testcase_07 | AC | 47 ms
59,136 KB |
testcase_08 | WA | - |
testcase_09 | AC | 46 ms
59,264 KB |
testcase_10 | AC | 42 ms
52,224 KB |
testcase_11 | WA | - |
testcase_12 | AC | 44 ms
57,984 KB |
testcase_13 | WA | - |
testcase_14 | AC | 695 ms
93,544 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 617 ms
91,648 KB |
testcase_18 | AC | 601 ms
91,328 KB |
testcase_19 | WA | - |
testcase_20 | AC | 813 ms
95,288 KB |
testcase_21 | AC | 784 ms
95,488 KB |
testcase_22 | AC | 601 ms
90,968 KB |
testcase_23 | AC | 39 ms
52,480 KB |
testcase_24 | AC | 89 ms
76,544 KB |
ソースコード
n,m=map(int,input().split()) s=[list(map(int,input().split()))for i in range(n)] for i in range(n):s[i].sort() from bisect import* def le(a, x): i = bisect_right(a, x) if i:return a[i-1] return -1 def ge(a, x): i = bisect_left(a, x) if i != len(a):return a[i] return -1 def validate(x): ans=10**18 for i in range(m): c=s[0][i] k=0 for j in range(1,n): r=le(s[j],c+x) if r==-1 or r<c:break k=max(k,r-c) c=r else:ans=min(ans,k) if ans==10**18:return True else:return False def binarysearch(left=-1,right=10**18,r=0): while left<=right: mid=(left+right)//2 if validate(mid):r=mid;left=mid+1 else:right=mid-1 return r c=binarysearch() if c==10**18: ans=10**18 for i in range(m): c=s[0][i] k=0 for j in range(1,n): r=ge(s[j],c) if r==-1:break k=max(k,r-c) c=r else:ans=min(ans,k) if ans==10**18:print(-1) else:print(ans) else:print(c+1)