E. Byteland, Berland and Disputed Cities

time limit per test2 seconds

memory limit per test256 megabytes

inputstandard input

outputstandard output

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.

Input

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.

Output

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.

Examples

inputCopy

4

-5 R

0 P

3 P

7 B

outputCopy

12

inputCopy

5

10 R

14 B

16 B

21 R

32 R

outputCopy

24

Note

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.

题意:

在坐标轴上有3种城市,分别是R,B,P,让你给一些城市连上无向边 满足这2个条件:

1、 删除所有的R节点之后,剩下的节点两两相互连通。

2、 删除所有的B节点之后,剩下的节点两两相互连通。

如果连接边的成本是两个城市的距离,请你是算出最小的距离。

思路:
对于每一个B节点,我们肯定是要让其与上一个B节点连接,R也相同, 当遇到P 节点使,有两种选择:

1、 让其与上一个B和上一个R相连。

2、让其与上一个P相连,然后删除一条最长的B-B或者R-R边。 这样一定可以满足题目要求的条件。

我们当然要选择成本最小的一个。

注意每一次选择第2个的时候,把维护的最长的B-B或者R-R边清空。

细节见代码:

  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <algorithm>
  5. #include <cmath>
  6. #include <queue>
  7. #include <stack>
  8. #include <map>
  9. #include <set>
  10. #include <vector>
  11. #include <iomanip>
  12. #define ALL(x) (x).begin(), (x).end()
  13. #define rt return
  14. #define dll(x) scanf("%I64d",&x)
  15. #define xll(x) printf("%I64d\n",x)
  16. #define sz(a) int(a.size())
  17. #define all(a) a.begin(), a.end()
  18. #define rep(i,x,n) for(int i=x;i<n;i++)
  19. #define repd(i,x,n) for(int i=x;i<=n;i++)
  20. #define pii pair<int,int>
  21. #define pll pair<long long ,long long>
  22. #define gbtb ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
  23. #define MS0(X) memset((X), 0, sizeof((X)))
  24. #define MSC0(X) memset((X), '\0', sizeof((X)))
  25. #define pb push_back
  26. #define mp make_pair
  27. #define fi first
  28. #define se second
  29. #define eps 1e-6
  30. #define gg(x) getInt(&x)
  31. #define chu(x) cout<<"["<<#x<<" "<<(x)<<"]"<<endl
  32. using namespace std;
  33. typedef long long ll;
  34. ll gcd(ll a, ll b) {return b ? gcd(b, a % b) : a;}
  35. ll lcm(ll a, ll b) {return a / gcd(a, b) * b;}
  36. ll powmod(ll a, ll b, ll MOD) {ll ans = 1; while (b) {if (b % 2) { ans = ans * a % MOD; } a = a * a % MOD; b /= 2;} return ans;}
  37. inline void getInt(int *p);
  38. const int maxn = 1000010;
  39. const ll inf = 0x3f3f3f3f;
  40. /*** TEMPLATE CODE * * STARTS HERE ***/
  41. ll ans = 0ll;
  42. ll preb = -inf;
  43. ll prer = -inf;
  44. ll prep = -inf;
  45. ll max_r = 0ll;
  46. ll max_b = 0ll;
  47. int n;
  48. ll pos;
  49. char t;
  50. int main()
  51. {
  52. //freopen("D:\\code\\text\\input.txt","r",stdin);
  53. //freopen("D:\\code\\text\\output.txt","w",stdout);
  54. gbtb;
  55. cin >> n;
  56. repd(i, 1, n) {
  57. cin >> pos >> t;
  58. if (t == 'R' || t == 'P') {
  59. if (prer != -inf) {
  60. ans += pos - prer;
  61. max_r = max(max_r, pos - prer);
  62. }
  63. prer = pos;
  64. }
  65. if (t == 'B' || t == 'P') {
  66. if (preb != -inf) {
  67. ans += pos - preb;
  68. max_b = max(max_b, pos - preb);
  69. }
  70. preb = pos;
  71. }
  72. if (t == 'P') {
  73. if(prep!=-inf)
  74. {
  75. ans+=min(0ll,-max_r-max_b+pos-prep);
  76. }
  77. prep=pos;
  78. max_r=0;
  79. max_b=0;
  80. }
  81. }
  82. cout<<ans<<endl;
  83. return 0;
  84. }
  85. inline void getInt(int *p)
  86. {
  87. char ch;
  88. do {
  89. ch = getchar();
  90. } while (ch == ' ' || ch == '\n');
  91. if (ch == '-') {
  92. *p = -(getchar() - '0');
  93. while ((ch = getchar()) >= '0' && ch <= '9') {
  94. *p = *p * 10 - ch + '0';
  95. }
  96. } else {
  97. *p = ch - '0';
  98. while ((ch = getchar()) >= '0' && ch <= '9') {
  99. *p = *p * 10 + ch - '0';
  100. }
  101. }
  102. }

Educational Codeforces Round 42 (Rated for Div. 2) E. Byteland, Berland and Disputed Cities(贪心)的更多相关文章

  1. Educational Codeforces Round 42 (Rated for Div. 2) E. Byteland, Berland and Disputed Cities

    http://codeforces.com/contest/962/problem/E E. Byteland, Berland and Disputed Cities time limit per ...

  2. Educational Codeforces Round 42 (Rated for Div. 2) D. Merge Equals

    http://codeforces.com/contest/962/problem/D D. Merge Equals time limit per test 2 seconds memory lim ...

  3. Educational Codeforces Round 42 (Rated for Div. 2)F - Simple Cycles Edges

    http://codeforces.com/contest/962/problem/F 求没有被两个及以上的简单环包含的边 解法:双联通求割顶,在bcc中看这是不是一个简单环,是的话把整个bcc的环加 ...

  4. Educational Codeforces Round 42 (Rated for Div. 2) C

    C. Make a Square time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...

  5. Educational Codeforces Round 42 (Rated for Div. 2) B

    B. Students in Railway Carriage time limit per test 2 seconds memory limit per test 256 megabytes in ...

  6. Educational Codeforces Round 42 (Rated for Div. 2) A

    A. Equator time limit per test 2 seconds memory limit per test 256 megabytes input standard input ou ...

  7. D. Merge Equals(from Educational Codeforces Round 42 (Rated for Div. 2))

    模拟题,运用强大的stl. #include <iostream> #include <map> #include <algorithm> #include < ...

  8. Educational Codeforces Round 42 (Rated for Div. 2)

    A. Equator(模拟) 找权值的中位数,直接模拟.. 代码写的好丑qwq.. #include<cstdio> #include<cstring> #include< ...

  9. C Make a Square Educational Codeforces Round 42 (Rated for Div. 2) (暴力枚举,字符串匹配)

    C. Make a Square time limit per test2 seconds memory limit per test256 megabytes inputstandard input ...

随机推荐

  1. leetcode 140 单词拆分2 word break II

    单词拆分2,递归+dp, 需要使用递归,同时使用记忆化搜索保存下来结果,c++代码如下 class Solution { public: //定义一个子串和子串拆分(如果有的话)的映射 unorder ...

  2. 使用xUnits来实现单元测试

    目录 前言 单元测试 xUnit 小结 附录 前言 从开始敲代码到现在,不停地都是在喊着记得做测试,记得自测,测试人员打回来扣你money之类的,刚开始因为心疼钱(当然还是为了代码质量),就老老实实自 ...

  3. Pytorch笔记 (2) 初识Pytorch

    一.人工神经网络库 Pytorch ———— 让计算机  确定神经网络的结构 +   实现人工神经元 + 搭建人工神经网络 + 选择合适的权重 (1)确定人工神经网络的 结构: 只需要告诉Pytorc ...

  4. Altera DDR2 IP核学习总结3-----------DDR2 IP核的使用

    根据上一篇生成的IP核,例化之后如上图,Local开头的数据是用户侧数据,其他数据暂时不用纠结,不用管. 这些是需要关注的信号,但是初学阶段很难对这些信号形成具体的概念,这里参考明德扬的代码进行二次封 ...

  5. python2.X与3.X比较及Python编译器选择

  6. centos8飞行驾驶舱和docker安装

    零.先解决cenos8的网络(systemctl restart network.service已被废弃) 1.# vim /etc/sysconfig/network-scripts/ifcfg-e ...

  7. 第j九周学习总结暨第七周实验报告

    完成火车站售票程序的模拟. 要求: (1)总票数1000张: (2)10个窗口同时开始卖票: (3)卖票过程延时1秒钟: (4)不能出现一票多卖或卖出负数号票的情况. 一:实验代码 package d ...

  8. HDU 1069 Monkey and Banana (动态规划、上升子序列最大和)

    Monkey and Banana Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others ...

  9. 【Linux 网络编程】TCP/IP四层模型

    应用层.传输层.网络层.链路层 链路层:常用协议 ARP(将物理地址转化为IP地址) RARP(将IP地址转换为物理地址) 网络层(IP层):重要协议ICMP IP IGMP 传输层:重要的协议TCP ...

  10. CentOS7设置集群环境SSH免密访问

    1.准备工作 1)通过克隆或者其他方式获得可互相通信的多台节点(本文为3台虚拟机:hadoop101.hadoop102.hadoop103) 2)配置节点的静态IP.hostname.hosts,参 ...