Programming Assignment 3: Baseball Elimination
Given the standings in a sports division at some point during the season, determine which teams have been mathematically eliminated from winning their division.
The baseball elimination problem. In the baseball elimination problem, there is a division consisting of N teams. At some point during the season, team i has w[i] wins, l[i] losses, r[i] remaining games, and g[i][j] games left to play against team j. A team is mathematically eliminated if it cannot possibly finish the season in (or tied for) first place. The goal is to determine exactly which teams are mathematically eliminated. For simplicity, we assume that no games end in a tie (as is the case in Major League Baseball) and that there are no rainouts (i.e., every scheduled game is played).
The problem is not as easy as many sports writers would have you believe, in part because the answer depends not only on the number of games won and left to play, but also on the schedule of remaining games. To see the complication, consider the following scenario:
w[i] l[i] r[i] g[i][j] i team wins loss left Atl Phi NY Mon ------------------------------------------------ 0 Atlanta 83 71 8 - 1 6 1 1 Philadelphia 80 79 3 1 - 0 2 2 New York 78 78 6 6 0 - 0 3 Montreal 77 82 3 1 2 0 -
Montreal is mathematically eliminated since it can finish with at most 80 wins and Atlanta already has 83 wins. This is the simplest reason for elimination. However, there can be more complicated reasons. For example, Philadelphia is also mathematically eliminated. It can finish the season with as many as 83 wins, which appears to be enough to tie Atlanta. But this would require Atlanta to lose all of its remaining games, including the 6 against New York, in which case New York would finish with 84 wins. We note that New York is not yet mathematically eliminated despite the fact that it has fewer wins than Philadelphia.
It is sometimes not so easy for a sports writer to explain why a particular team is mathematically eliminated. Consider the following scenario from the American League East on August 30, 1996:
w[i] l[i] r[i] g[i][j] i team wins loss left NY Bal Bos Tor Det --------------------------------------------------- 0 New York 75 59 28 - 3 8 7 3 1 Baltimore 71 63 28 3 - 2 7 4 2 Boston 69 66 27 8 2 - 0 0 3 Toronto 63 72 27 7 7 0 - 0 4 Detroit 49 86 27 3 4 0 0 -
It might appear that Detroit has a remote chance of catching New York and winning the division because Detroit can finish with as many as 76 wins if they go on a 27-game winning steak, which is one more than New York would have if they go on a 28-game losing streak. Try to convince yourself that Detroit is already mathematically eliminated. Here’s one ad hoc explanation; we will present a simpler explanation below.
A maxflow formulation. We now solve the baseball elimination problem by reducing it to the maxflow problem. To check whether team x is eliminated, we consider two cases.
- Trivial elimination. If the maximum number of games team x can win is less than the number of wins of some other team i, then team x is trivially eliminated (as is Montreal in the example above). That is, if w[x] +r[x] < w[i], then team x is mathematically eliminated.
- Nontrivial elimination. Otherwise, we create a flow network and solve a maxflow problem in it. In the network, feasible integral flows correspond to outcomes of the remaining schedule. There are vertices corresponding to teams (other than team x) and to remaining divisional games (not involving team x). Intuitively, each unit of flow in the network corresponds to a remaining game. As it flows through the network froms to t, it passes from a game vertex, say between teams i and j, then through one of the team vertices i or j, classifying this game as being won by that team.More precisely, the flow network includes the following edges and capacities.
- We connect an artificial source vertex s to each game vertex i-j and set its capacity to g[i][j]. If a flow uses all g[i][j] units of capacity on this edge, then we interpret this as playing all of these games, with the wins distributed between the team vertices i and j.
- We connect each game vertex i-j with the two opposing team vertices to ensure that one of the two teams earns a win. We do not need to restrict the amount of flow on such edges.
- Finally, we connect each team vertex to an artificial sink vertex t. We want to know if there is some way of completing all the games so that team x ends up winning at least as many games as team i. Since teamx can win as many as w[x] + r[x] games, we prevent team i from winning more than that many games in total, by including an edge from team vertex i to the sink vertex with capacity w[x] + r[x] - w[i].
If all edges in the maxflow that are pointing from s are full, then this corresponds to assigning winners to all of the remaining games in such a way that no team wins more games than x. If some edges pointing from sare not full, then there is no scenario in which team x can win the division. In the flow network below Detroit is team x = 4.
What the min cut tells us. By solving a maxflow problem, we can determine whether a given team is mathematically eliminated. We would also like to explain the reason for the team’s elimination to a friend in nontechnical terms (using only grade-school arithmetic). Here’s such an explanation for Detroit’s elimination in the American League East example above. With the best possible luck, Detroit finishes the season with 49 + 27 = 76 wins. Consider the subset of teams R = { New York, Baltimore, Boston, Toronto }. Collectively, they already have 75 + 71 + 69 + 63 = 278 wins; there are also 3 + 8 + 7 + 2 + 7 = 27 remaining games among them, so these four teams must win at least an additional 27 games. Thus, on average, the teams in R win at least 305 / 4 = 76.25 games. Regardless of the outcome, one team in R will win at least 77 games, thereby eliminating Detroit.
In fact, when a team is mathematically eliminated there always exists such a convincing certificate of elimination, where R is some subset of the other teams in the division. Moreover, you can always find such a subset Rby choosing the team vertices on the source side of a min s-t cut in the baseball elimination network. Note that although we solved a maxflow/mincut problem to find the subset R, once we have it, the argument for a team’s elimination involves only grade-school algebra.
Your assignment. Write an immutable data type BaseballElimination that represents a sports division and determines which teams are mathematically eliminated by implementing the following API:
public BaseballElimination(String filename) // create a baseball division from given filename in format specified below public int numberOfTeams() // number of teams public Iterable<String> teams() // all teams public int wins(String team) // number of wins for given team public int losses(String team) // number of losses for given team public int remaining(String team) // number of remaining games for given team public int against(String team1, String team2) // number of remaining games between team1 and team2 public boolean isEliminated(String team) // is given team eliminated? public Iterable<String> certificateOfElimination(String team) // subset R of teams that eliminates given team; null if not eliminated
The last six methods should throw a java.lang.IllegalArgumentException if one (or both) of the input arguments are invalid teams.
Input format. The input format is the number of teams in the division N followed by one line for each team. Each line contains the team name (with no internal whitespace characters), the number of wins, the number of losses, the number of remaining games, and the number of remaining games against each team in the divsion. For example, the input files teams4.txt and teams5.txt correspond to the two examples discussed above.
% more teams4.txt 4 Atlanta 83 71 8 0 1 6 1 Philadelphia 80 79 3 1 0 0 2 New_York 78 78 6 6 0 0 0 Montreal 77 82 3 1 2 0 0 % more teams5.txt 5 New_York 75 59 28 0 3 8 7 3 Baltimore 71 63 28 3 0 2 7 4 Boston 69 66 27 8 2 0 0 0 Toronto 63 72 27 7 7 0 0 0 Detroit 49 86 27 3 4 0 0 0
You may assume that N ≥ 1 and that the input files are in the specified format and internally consistent. Note that a team’s total number of remaining games does not necessarily equal the number of remaining games against divisional rivals since teams may play opponents outside of their own division.
Output format. Use the following main() function, which reads in a sports division from an input file and prints out whether each team is mathematically eliminated and a certificate of elimination for each team that is eliminated:
public static void main(String[] args) { BaseballElimination division = new BaseballElimination(args[0]); for (String team : division.teams()) { if (division.isEliminated(team)) { StdOut.print(team + " is eliminated by the subset R = { "); for (String t : division.certificateOfElimination(team)) StdOut.print(t + " "); StdOut.println("}"); } else { StdOut.println(team + " is not eliminated"); } } }
Below is the desired output:
% java BaseballElimination teams4.txt Atlanta is not eliminated Philadelphia is eliminated by the subset R = { Atlanta New_York } New_York is not eliminated Montreal is eliminated by the subset R = { Atlanta } % java BaseballElimination teams5.txt New_York is not eliminated Baltimore is not eliminated Boston is not eliminated Toronto is not eliminated Detroit is eliminated by the subset R = { New_York Baltimore Boston Toronto }
Analysis. Analyze the worst-case memory usage and running time of your algorithm.
- What is the order of growth of the amount of memory (in the worst case) that your program uses to determine whether one team is eliminated? In particular, how many vertices and edges are in the flow network as a function of the number of teams N?
- What is the order of growth of the running time (in the worst case) of your program to determine whether one team is eliminated as a function of the number of teams N? In your calculation, assume that the order of growth of the running time (in the worst case) to compute a maxflow in a network with V vertices and E edges is V E2.
Also, use the output of your program to answer the following question:
- Consider the sports division defined in teams12.txt. Explain in nontechnical terms (using the results of certificate of elimination and grade-school arithmetic) why Japan is mathematically eliminated.
Extra credit. Create and submit an interesting test input file (in the specified format) and name it teams.txt. Your input file should contain one or more teams whose elimination would not be obvious to a sports writer. Ideally, your input file should be based on real-world data.
Submission. Submit BaseballElimination.java and any other files needed to compile your program (excluding those in stdlib.jar and algs4.jar).
This assignment was developed by Kevin Wayne.Copyright © 2003.
public class BaseballElimination { private int numberOfTeams; private LinearProbingHashST<String, Integer> teams; private int [] w; private int [] l; private int [] r; private int [][] g; private LinearProbingHashST<String, SET<String>> certificateOfElimination; private LinearProbingHashST<String, Boolean> isEliminated; // create a baseball division from given filename in format specified below public BaseballElimination(String filename) { In baseballEliminationIn = new In(new java.io.File(filename)); numberOfTeams = baseballEliminationIn.readInt(); teams = new LinearProbingHashST<String, Integer>(); certificateOfElimination = new LinearProbingHashST<String, SET<String>>(); isEliminated = new LinearProbingHashST<String, Boolean>(); w = new int[numberOfTeams]; l = new int[numberOfTeams]; r = new int[numberOfTeams]; g = new int[numberOfTeams][numberOfTeams]; for (int i = 0; i < numberOfTeams; i++) { String team = baseballEliminationIn.readString(); teams.put(team, i); w[i] = baseballEliminationIn.readInt(); l[i] = baseballEliminationIn.readInt(); r[i] = baseballEliminationIn.readInt(); for (int j = 0; j < numberOfTeams; j++) { g[i][j] = baseballEliminationIn.readInt(); } } } // number of teams public int numberOfTeams() { return numberOfTeams; } // all teams public Iterable<String> teams() { return teams.keys(); } // number of wins for given team public int wins(String team) { if (!teams.contains(team)) { throw new IllegalArgumentException(); } return w[teams.get(team)]; } // number of losses for given team public int losses(String team) { if (!teams.contains(team)) { throw new IllegalArgumentException(); } return l[teams.get(team)]; } // number of remaining games for given team public int remaining(String team) { if (!teams.contains(team)) { throw new IllegalArgumentException(); } return r[teams.get(team)]; } // number of remaining games between team1 and team2 public int against(String team1, String team2) { if (!teams.contains(team1) || !teams.contains(team2)) { throw new IllegalArgumentException(); } return g[teams.get(team1)][teams.get(team2)]; } private void eliminateAnalysis(String team) { int index = teams.get(team); int wx = w[index]; int rx = r[index]; SET<String> set = new SET<String>(); for (String key: teams.keys()) { int i = teams.get(key); if (i == index) continue; if (w[i] > wx + rx) { set.add(key); } } if (set.size() > 0) { certificateOfElimination.put(team, set); isEliminated.put(team, true); return; } int gamesNode = (numberOfTeams - 1) * (numberOfTeams - 2)/2 + 1; int V = 1 + gamesNode + (numberOfTeams - 1) + 1; FlowNetwork flowNetwork = new FlowNetwork(V - 1); int incr = 1; for (int i = 0; i < numberOfTeams; i++) { for (int j = i + 1; j < numberOfTeams; j++) { if ((i != index) && (j != index)) { FlowEdge flowEdge1 = new FlowEdge(0, incr, g[i][j]); flowNetwork.addEdge(flowEdge1); int teamNodeIndex = i; if (teamNodeIndex > index) { teamNodeIndex = teamNodeIndex - 1; } int endIndex = gamesNode + teamNodeIndex; FlowEdge f2 = new FlowEdge(incr, endIndex, Integer.MAX_VALUE); flowNetwork.addEdge(f2); teamNodeIndex = j; if (teamNodeIndex > index) { teamNodeIndex = teamNodeIndex - 1; } endIndex = gamesNode + teamNodeIndex; FlowEdge f3 = new FlowEdge(incr, endIndex, Integer.MAX_VALUE); flowNetwork.addEdge(f3); incr++; } } } for (int i = 0; i < numberOfTeams; i++) { if (i == index) continue; int teamNodeIndex = i; if (teamNodeIndex > index) { teamNodeIndex = teamNodeIndex - 1; } int startIndex = gamesNode + teamNodeIndex; int endIndex = flowNetwork.V() - 1; FlowEdge flowEdge = new FlowEdge(startIndex, endIndex, wx + rx - w[i]); flowNetwork.addEdge(flowEdge); } int endIndex = flowNetwork.V() - 1; FordFulkerson maxflow = new FordFulkerson(flowNetwork, 0, endIndex); //StdOut.println(flowNetwork); boolean result = false; for (FlowEdge e : flowNetwork.adj(0)) if ((e.flow() != e.capacity()) && e.flow() >= 0) { result = true; break; } if (result) { set = new SET<String>(); for (String key: teams.keys()) { int i = teams.get(key); if (i == index) continue; int teamNodeIndex = i; if (teamNodeIndex > index) { teamNodeIndex = teamNodeIndex - 1; } if (maxflow.inCut(gamesNode + teamNodeIndex)) { set.add(key); } } certificateOfElimination.put(team, set); isEliminated.put(team, true); } else { certificateOfElimination.put(team, null); isEliminated.put(team, false); } } // is given team eliminated? public boolean isEliminated(String team) { if (!teams.contains(team)) { throw new IllegalArgumentException(); } if (!isEliminated.contains(team)) { eliminateAnalysis(team); } return isEliminated.get(team); } // subset R of teams that eliminates given team; null if not eliminated public Iterable<String> certificateOfElimination(String team) { if (!teams.contains(team)) { throw new IllegalArgumentException(); } if (!certificateOfElimination.contains(team)) { eliminateAnalysis(team); } return certificateOfElimination.get(team); } public static void main(String[] args) { BaseballElimination division = new BaseballElimination(args[0]); //StdOut.println(division.isEliminated("Japan")); for (String team : division.teams()) { if (division.isEliminated(team)) { StdOut.print(team + " is eliminated by the subset R = { "); for (String t : division.certificateOfElimination(team)) StdOut.print(t + " "); StdOut.println("}"); } else { StdOut.println(team + " is not eliminated"); } } } }