-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk largestelement.py
45 lines (41 loc) · 1.21 KB
/
k largestelement.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Kth largest element
# Send Feedback
# Given an array A of random integers and an integer k, find and return the kth largest element in the array.
# Note: Try to do this question in less than O(N * logN) time.
# Input Format:
# The first line of input contains an integer, that denotes the value of the size of the array. Let us denote it with the symbol N.
# The following line contains N space separated integers, that denote the value of the elements of the array.
# The following contains an integer, that denotes the value of k.
# Output Format:
# The first and only line of output contains the kth largest element
# Constraints:
# 1 <= N, Ai, k <= 10 ^ 5
# Time Limit: 1 sec
# Sample Input 1:
# 6
# 9 4 8 7 11 3
# 2
# Sample Output 1:
# 9
# Sample Input 2:
# 8
# 2 6 10 11 13 4 1 20
# 4
# Sample Output 2:
# 10
import heapq
def klargest(lst, k):
li = list()
for i in range(k):
li.append(lst[i])
heapq.heapify(li)
for j in range(k, len(lst)):
if li[0] < lst[j]:
heapq.heapreplace(li, lst[j])
return li[0]
# Main
n = int(input())
lst = list(int(i) for i in input().strip().split(' '))
k = int(input())
ans = klargest(lst, k)
print(ans)