题库练习 New Year and Rainbow Roads
← 上一题 下一题 →

A11546 | New Year and Rainbow Roads

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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 $p_{i}$ and $c_{i}$ ( $p_{i}$ is an integer, $1<=p_{i}<=10^{9}$ , $c_{i}$ 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
C++ 编辑器
输入
输出