CF962E.Byteland, Berland and Disputed Cities

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The cities of Byteland and Berland are located on the axis OxOx . In addition, on this axis there are also disputed cities, which belong to each of the countries in their opinion. Thus, on the line OxOx 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 OxOx . It is technically possible to connect the cities aa and bb with a cable so that the city cc ( a<c<ba < c < b ) is not connected to this cable, where aa , bb and cc are simultaneously coordinates of the cities aa , bb and cc .

输入格式

The first line contains a single integer nn ( 2n21052 \le n \le 2 \cdot 10^{5} ) — the number of cities.

The following nn lines contains an integer xix_i and the letter cic_i ( 109xi109-10^{9} \le x_i \le 10^{9} ) — the coordinate of the city and its type. If the city belongs to Byteland, cic_i equals to 'B'. If the city belongs to Berland, cic_i equals to «R». If the city is disputed, cic_i 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 ( cic_i ='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 ( cic_i ='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=125 + 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,3210, 21, 32 , so to connect them you need two cables of length 1111 and 1111 . The cities of Byteland have coordinates 1414 and 1616 , so to connect them you need one cable of length 22 . Thus, the total length of all cables is 11+11+2=2411 + 11 + 2 = 24 .

首页