CF908F.New Year and Rainbow Roads
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Roy and Biv have a set of n points on the infinite number line.
Each point has one of 3 colors: red, green, or blue.
Roy and Biv would like to connect all the points with some edges. Edges can be drawn between any of the two of the given points. The cost of an edge is equal to the distance between the two points it connects.
They want to do this in such a way that they will both see that all the points are connected (either directly or indirectly).
However, there is a catch: Roy cannot see the color red and Biv cannot see the color blue.
Therefore, they have to choose the edges in such a way that if all the red points are removed, the remaining blue and green points are connected (and similarly, if all the blue points are removed, the remaining red and green points are connected).
Help them compute the minimum cost way to choose edges to satisfy the above constraints.
输入格式
The first line will contain an integer n ( 1<=n<=300000 ), the number of points.
The next n lines will contain two tokens pi and ci ( pi is an integer, 1<=pi<=109 , ci is a uppercase English letter 'R', 'G' or 'B'), denoting the position of the i -th point and the color of the i -th point. 'R' means red, 'G' denotes green, and 'B' means blue. The positions will be in strictly increasing order.
输出格式
Print a single integer, the minimum cost way to solve the problem.
输入输出样例
输入#1
4 1 G 5 R 10 B 15 G
输出#1
23
输入#2
4 1 G 2 R 3 B 10 G
输出#2
12
说明/提示
In the first sample, it is optimal to draw edges between the points (1,2), (1,4), (3,4). These have costs 4, 14, 5, respectively.