HBC24820最近的两个点,计算几何[USACO 2009 Jan S]Total Flow题解

季陌殇 算法基础篇 45 0
题库丰富多样,涵盖各个领域,全网最全C++题库,让您在练习中不断成长!
Farmer John always wants his cows to have enough water and thus has made a map of the N (1

Farmer John always wants his cows to have enough water and thus has made a map of the N (1 <= N <= 700) water pipes on the farm that connect the well to the barn. He was surprised to find a wild mess of different size pipes connected in an apparently haphazard way. He wants to calculate the flow through the pipes. Two pipes connected in a row allow water flow that is the minimum of the values of the two pipe's flow values. The example of a pipe with flow capacity 5 connecting to a pipe of flow capacity 3 can be reduced logically to a single pipe of flow capacity 3: +---5---+---3---+ -> +---3---+ Similarly, pipes in parallel let through water that is the sum of their flow capacities: +---5---+ ---+ +--- -> +---8---+ +---3---+ Finally, a pipe that connects to nothing else can be removed; it contributes no flow to the final overall capacity: +---5---+ ---+ -> +---3---+ +---3---+-- All the pipes in the many mazes of plumbing can be reduced using these ideas into a single total flow capacity. Given a map of the pipes, determine the flow capacity between the well (A) and the barn (Z). Consider this example where node names are labeled with letters: +-----------6-----------+ A+---3---+B +Z +---3---+---5---+---4---+ C D Pipe BC and CD can be combined: +-----------6-----------+ A+---3---+B +Z +-----3-----+-----4-----+ D Then BD and DZ can be combined: +-----------6-----------+ A+---3---+B +Z +-----------3-----------+ Then two legs of BZ can be combined: B A+---3---+---9---+Z Then AB and BZ can be combined to yield a net capacity of 3: A+---3---+Z Write a program to read in a set of pipes described as two endpoints and then calculate the net flow capacity from 'A' to 'Z'. All networks in the test data can be reduced using the rules here. Pipe i connects two different nodes a_i and b_i (a_i in range 'A-Za-z'; b_i in range 'A-Za-z') and has flow F_i (1 <= F_i <= 1,000). Note that lower- and upper-case node names are intended to be treated as different. The system will provide extra test case feedback for your first 50 submissions.

HBC24820最近的两个点,计算几何[USACO 2009 Jan S]Total Flow题解
-第1张图片-东莞河马信息技术
(图片来源网络,侵删)
不断学习,不断挑战,才能在编程领域中脱颖而出!全网最全C++题库,助您成为编程高手!

标签: HBC24820最近的两个点 计算几何[USACO 2009 Jan S]Total Flow题解