-
Notifications
You must be signed in to change notification settings - Fork 619
/
Copy pathmin_swaps.py
39 lines (30 loc) · 1012 Bytes
/
min_swaps.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
# Minimum swaps required to bring all elements less than or equal to k together
def min_swaps(arr, k):
# First find out how many elements are there which are less than or
# equal to k
count = 0
for i in arr:
if i <= k:
count += 1
# This count defines a window - inside this window all our elements should
# be placed
# Find the count of bad elements - elements which are more than k and that will be
# our starting answer as we will have to swap them out
bad = 0
for i in range(0, count):
if arr[i] > k:
bad += 1
ans = bad
j = count
for i in range(0, len(arr)):
if j == len(arr):
break
if arr[i] > k:
bad -= 1 # because we have moved the bad element out of the window
if arr[j] > k:
bad += 1
ans = min(bad, ans)
j += 1
print('answer - ', ans)
arr = [2,7,9,5,8,7,4]
min_swaps(arr, 5)