fork(1) download
  1. # "Suppose you're on a game show, and you're given the choice of three doors: Behind one
  2. # door is a car; behind the others, goats. You pick a door, say No. 1, and the host, who
  3. # knows what's behind the doors, opens another door, say No. 3, which has a goat. He then
  4. # says to you, "Do you want to pick door No. 2?" Is it to your advantage to switch your choice?"
  5. #
  6. # Input Description
  7. # On standard console input, you will be given a single integer ranging inclusively from 1
  8. # to 4,294,967,295 (unsigned 32-bit integer). This integer is the number of times you should
  9. # simulate the game for both tactics. Remember that a single "game simulation" is your program
  10. # randomly placing a car behind one door and two goats behind the two remaining doors. You must
  11. # then randomly pick a door, have one of the two remaining doors open, but only open if it's
  12. # a goat behind said door! After that, if using the first tactic, you may open the picked door,
  13. # or if using the second tactic, you may open the other remaining door. Keep track if your
  14. # success rates in both simulations.
  15. #
  16. # Output Description
  17. # On two seperate lines, print "Tactic 1: X% winning chance" and "Tactic 2: Y% winning chance",
  18. # where X and Y are the percentages of success for the respective tactics
  19. #
  20. # Sample Input
  21. # 1000000
  22. #
  23. # Sample Output
  24. # Tactic 1: 33.3% winning chance
  25. # Tactic 2: 66.6% winning chance
  26. #
  27. # http://g...content-available-to-author-only...o.gl/YYGOGv
  28.  
  29. from random import sample
  30.  
  31. runs, wins = 10000, 0.0
  32. return_string = "Tactic 1: {0}% winning chance\nTactic 2: {1}% winning chance"
  33.  
  34. for _ in range(runs):
  35. if [False, False, True][sample(range(3), 2)[1]]:
  36. wins += 1
  37.  
  38. print(return_string.format((wins/runs)*100, ((runs-wins)/runs)*100))
Success #stdin #stdout 0.26s 12264KB
stdin
Standard input is empty
stdout
Tactic 1: 33.52% winning chance
Tactic 2: 66.47999999999999% winning chance