A water company is trying to provide water from its pumping
station to a mansion. The company owns water stations, numbered
, which are
connected by a variety of pipes. Water can flow through both
directions of a pipe, but the total amount of water that can
flow through the pipe is bounded by the capacity of the
pipe.
The water company is constantly improving the pipes,
increasing the capacity of various pipes. The water company is
conducting
improvements (each of which is permanent after it is executed).
An improvement consists of taking a pipe between two locations
and increasing its capacity by a fixed amount, or installing a
pipe between two locations which are not directly connected by
a pipe.
After each improvement, the water company wants to know the
maximum amount of water the mansion could receive.
Input
Each input will consist of a single test case. Note that
your program may be run multiple times on different inputs. The
first line of input contains three integers, (), (), and (), where is the number of stations,
is the number of
initial pipes, and is
the number of improvements. The first station in the list is
always the pumping station, and the second is always the
mansion.
The next lines will
describe the pipes in the initial setup. The lines will each
contain three integers, , () and (), which indicates that stations
and are connected by a pipe with
capacity . No
pair will appear
more than once in this section.
The next lines will
describe the improvements. The lines will each contain three
integers, ,
() and
(), which
indicates that the pipe connecting stations and has its capacity increased by
(if there is currently
no pipe between and
, then one is created
with capacity ). Note
that it is possible for an pair to be repeated in this
section.
Output
Output integers,
each on its own line, describing the maximum amount of water
that can reach the mansion. The first number is the amount of
water reaching the mansion in the initial configuration. The
next numbers are the
amounts of water reaching the mansion after each
improvement.
Sample Input 1 |
Sample Output 1 |
3 2 1
1 3 10
2 3 1
2 3 15
|
1
10
|
Sample Input 2 |
Sample Output 2 |
6 10 2
1 3 2
1 4 6
1 5 1
3 5 8
4 5 7
2 4 3
2 5 4
2 6 1
5 6 9
3 6 5
2 6 9
1 6 3
|
8
9
12
|