Ai
1 Star 2 Fork 5

LilithSangreal/LeetCode-Solutions

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
k-th-smallest-prime-fraction.py 1.07 KB
一键复制 编辑 原始数据 按行查看 历史
Allen Liu 提交于 2018-10-12 01:33 +08:00 . remove sensitive question description
# Time: O(nlogr)
# Space: O(1)
class Solution(object):
def kthSmallestPrimeFraction(self, A, K):
"""
:type A: List[int]
:type K: int
:rtype: List[int]
"""
def check(mid, A, K, result):
tmp = [0]*2
count = 0
j = 0
for i in xrange(len(A)):
while j < len(A):
if i < j and A[i] < A[j]*mid:
if tmp[0] == 0 or \
tmp[0]*A[j] < tmp[1]*A[i]:
tmp[0] = A[i]
tmp[1] = A[j]
break
j += 1
count += len(A)-j
if count == K:
result[:] = tmp
return count >= K
result = []
left, right = 0.0, 1.0
while right-left > 1e-8:
mid = left + (right-left) / 2.0
if check(mid, A, K, result):
right = mid
else:
left = mid
if result:
break
return result
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/LilithSangreal/LeetCode-Solutions.git
git@gitee.com:LilithSangreal/LeetCode-Solutions.git
LilithSangreal
LeetCode-Solutions
LeetCode-Solutions
master

搜索帮助