프로그램 명: usa_vacationgold
제한시간: 1 초

Air Bovinia operates flights connecting the N farms that the cows live on (1 <= N <= 20,000). As with any airline, K of these farms have been designated as hubs (1 <= K <= 200, K <= N).

Currently, Air Bovinia offers M one-way flights (1 <= M <= 20,000), where flight i travels from farm u_i to farm v_i and costs d_i (1 <= d_i <= 10,000) dollars. As with any other sensible airline, for each of these flights, at least one of u_i and v_i is a hub. There is at most one direct flight between two farms in any given direction, and no flight starts and ends at the same farm.

Bessie is in charge of running the ticketing services for Air Bovinia. Unfortunately, while she was away chewing on delicious hay for a few hours, Q one-way travel requests for the cows' holiday vacations were received (1 <= Q <= 50,000), where the ith request is from farm a_i to farm b_i.

As Bessie is overwhelmed with the task of processing these tickets, please help her compute whether each ticket request can be fullfilled, and its minimum cost if it can be done.

To reduce the output size, you should only output the total number of ticket requests that are possible, and the minimum total cost for them. Note that this number might not fit into a 32-bit integer.

입력

출력

* Line 1: The number of ticket requests that can be fullfilled. * Line 2: The minimum total cost of fulling the possible ticket requests

입출력 예

입력

3 3 1 2
1 2 10
2 3 10
2 1 5
2
1 3
3 1

출력

1
20
OUTPUT DETAILS:

For the first flight, the only feasible route is 1->2->3, costing 20.
There are no flights leaving farm 3, so the poor cows are stranded there.
출처:usaco/2013/dec/gold

[질/답] [제출 현황] [푼 후(0)]
[ 채 점 ] [홈으로]  [뒤 로]