In the first line ,there are 3 non-negative interger , S, H and X, S stands for the length of the river, H is the original depth of the water, and there are X transportation companies.
Then follow X lines, in the (1+i)th line ,there are 3 numbers, a , b, and c, indicate Company i is responsible for the transportation between a and b, and c is the waterline of the boats from the company.
In (X+2)th line there is an interger Q , indicating there would be Q command lines. There are 4 variations of the command.
(1)F a b h meaning for sand silting, from a to b of the river the water depth has reduce to h meters,but those places where the depth is less than h meters remain the same.
(2)D a b h indicating the GM is trying removing the sand silting and the water depth reaches h meters ,but those places where the depth is more than h meters keeps the same.
(3)O a b implying Mr April wants to know whether there is a possible ways to deliver the gift from a to b. In other words, he wants to find a way to cover the segment [a, b] or [b,a] by one or some company's available boats.
(4)C a h saying Company a has changed all its boats to new ones which has the waterline as h.
0<S<100000, 0<=x<=100,0<=H <=1000, 0<=Q<=1000