-
Notifications
You must be signed in to change notification settings - Fork 0
/
tournament.py
71 lines (53 loc) · 1.79 KB
/
tournament.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Simulate a sports tournament
import csv
import sys
import random
# Number of simluations to run
N = 1000
def main():
# Ensure correct usage
if len(sys.argv) != 2:
sys.exit("Usage: python tournament.py FILENAME")
teams = []
with open(sys.argv[1]) as file:
file1 = csv.DictReader(file)
for row in file1:
teams.append(row)
counts = {}
# TODO: Simulate N tournaments and keep track of win counts
for simulation in range(N):
winner = simulate_tournament(teams)
if winner in counts:
counts[winner] = counts[winner] + 1
else:
counts[winner] = 1
# Print each team's chances of winning, according to simulation
for team in sorted(counts, key=lambda team: counts[team], reverse=True):
print(f"{team}: {counts[team] * 100 / N:.1f}% chance of winning")
def simulate_game(team1, team2):
"""Simulate a game. Return True if team1 wins, False otherwise."""
rating1 = int(team1["rating"])
rating2 = int(team2["rating"])
probability = 1 / (1 + 10 ** ((rating2 - rating1) / 600))
return random.random() < probability
def simulate_round(teams):
"""Simulate a round. Return a list of winning teams."""
winners = []
# Simulate games for all pairs of teams
for i in range(0, len(teams), 2):
if simulate_game(teams[i], teams[i + 1]):
winners.append(teams[i])
else:
winners.append(teams[i + 1])
return winners
def simulate_tournament(teams):
"""Simulate a tournament. Return name of winning team."""
rounds = len(teams)
if rounds >= 2:
teams = simulate_round(teams)
return simulate_tournament(teams)
else:
winner = teams[0]["team"]
return winner
if __name__ == "__main__":
main()