CF962E.Byteland, Berland and Disputed Cities
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The cities of Byteland and Berland are located on the axis Ox . In addition, on this axis there are also disputed cities, which belong to each of the countries in their opinion. Thus, on the line Ox there are three types of cities:
- the cities of Byteland,
- the cities of Berland,
- disputed cities.
Recently, the project BNET has been launched — a computer network of a new generation. Now the task of the both countries is to connect the cities so that the network of this country is connected.
The countries agreed to connect the pairs of cities with BNET cables in such a way that:
- If you look at the only cities of Byteland and the disputed cities, then in the resulting set of cities, any city should be reachable from any other one by one or more cables,
- If you look at the only cities of Berland and the disputed cities, then in the resulting set of cities, any city should be reachable from any other one by one or more cables.
Thus, it is necessary to choose a set of pairs of cities to connect by cables in such a way that both conditions are satisfied simultaneously. Cables allow bi-directional data transfer. Each cable connects exactly two distinct cities.
The cost of laying a cable from one city to another is equal to the distance between them. Find the minimum total cost of laying a set of cables so that two subsets of cities (Byteland and disputed cities, Berland and disputed cities) are connected.
Each city is a point on the line Ox . It is technically possible to connect the cities a and b with a cable so that the city c ( a<c<b ) is not connected to this cable, where a , b and c are simultaneously coordinates of the cities a , b and c .
输入格式
The first line contains a single integer n ( 2≤n≤2⋅105 ) — the number of cities.
The following n lines contains an integer xi and the letter ci ( −109≤xi≤109 ) — the coordinate of the city and its type. If the city belongs to Byteland, ci equals to 'B'. If the city belongs to Berland, ci equals to «R». If the city is disputed, ci equals to 'P'.
All cities have distinct coordinates. Guaranteed, that the cities are given in the increasing order of their coordinates.
输出格式
Print the minimal total length of such set of cables, that if we delete all Berland cities ( ci ='R'), it will be possible to find a way from any remaining city to any other remaining city, moving only by cables. Similarly, if we delete all Byteland cities ( ci ='B'), it will be possible to find a way from any remaining city to any other remaining city, moving only by cables.
输入输出样例
输入#1
4 -5 R 0 P 3 P 7 B
输出#1
12
输入#2
5 10 R 14 B 16 B 21 R 32 R
输出#2
24
说明/提示
In the first example, you should connect the first city with the second, the second with the third, and the third with the fourth. The total length of the cables will be 5+3+4=12 .
In the second example there are no disputed cities, so you need to connect all the neighboring cities of Byteland and all the neighboring cities of Berland. The cities of Berland have coordinates 10,21,32 , so to connect them you need two cables of length 11 and 11 . The cities of Byteland have coordinates 14 and 16 , so to connect them you need one cable of length 2 . Thus, the total length of all cables is 11+11+2=24 .