CSES problem: you have a computer network with nodes and connections. Each connection has a maximum data rate. Find the maximum download speed from computer to computer . This is a direct application of max flow.
Computer is the source, computer is the sink, and each connection is an edge with capacity equal to its data rate. Run Edmonds-Karp and output the maximum flow value. That is the answer.