Advertisement
Guest User

Untitled

a guest
Sep 12th, 2020
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. n = int(input())
  2. count = 0
  3. vector = list(input())
  4.  
  5. try:
  6. last = n - vector[::-1].index("R") - 1 # last red
  7. first = vector.index("W") # first white
  8.  
  9. while first < last:
  10. vector[first], vector[last] = vector[last], vector[first]
  11. count += 1
  12. last = n - vector[::-1].index("R") - 1
  13. first = vector.index("W")
  14. print(count)
  15.  
  16. except ValueError:
  17. print(0)
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement